Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
whitphx
/
test-streamlit-app
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ad055b5
test-streamlit-app
/
app.py
whitphx
HF Staff
Add app file
ad055b5
over 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)