Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
howaboutyu
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test
/
app.py
David Yu
changes
a1adc0c
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
97 Bytes
import
streamlit
as
st
x = st.slider(
"Select a value, please"
)
st.write(x,
"squared is"
, x * x)