Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
takanabe
/
space-demo-with-streamlit
like
0
Runtime error
App
Files
Files
main
space-demo-with-streamlit
/
app.py
takanabe
Add application file
79149eb
almost 2 years ago
raw
Copy download link
history
blame
Safe
89 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)