Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
alkzar90
/
streamlit-demo-example
like
1
Runtime error
App
Files
Files
Community
1fcb538
streamlit-demo-example
/
app.py
alkzar90
Add application file
1fcb538
almost 3 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)