Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jgwill
/
nalit-x2409b-streamlit
like
0
Sleeping
App
Files
Files
Community
14c03d7
nalit-x2409b-streamlit
/
app.py
jgwill
dummy
14c03d7
4 months ago
raw
Copy download link
history
blame
Safe
90 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)