Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mingjiel
/
test_demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test_demo
/
app.py
mingjiel
Create app.py
eaf82ca
verified
12 months 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)