Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dmccreary
/
spaces-demo
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ced09f1
spaces-demo
/
app.py
dmccreary
Added app.py
ced09f1
over 2 years ago
raw
Copy download link
history
blame
Safe
88 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)