Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
yuningwu
/
ds5660
like
0
Sleeping
App
Files
Files
Community
main
ds5660
/
app.py
Kew
Create app.py
c64dbd8
11 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)