Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
kl08
/
demo-demo
like
0
Sleeping
App
Files
Files
Community
main
demo-demo
/
app.py
kl08
add app.py
906b9d7
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
88 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)