Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Humboldt
/
Trees
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
91a21c4
Trees
/
app.py
Humboldt
Create app.py
91a21c4
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)