st_llm / app.py
bpandey23's picture
Update app.py
a5599b6 verified
raw
history blame contribute delete
116 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write("Bhavesh Pandey")