Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jung
/
streamlit_playground
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b6efca8
streamlit_playground
/
app.py
Jung
Create new file
b6efca8
over 2 years ago
raw
Copy download link
history
blame
Safe
96 Bytes
import
streamlit
as
st
x = st.sidebar.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)