Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zpbrent
/
test_streamlit
like
0
Sleeping
App
Files
Files
Community
7ee94bd
test_streamlit
/
Streamlit app.py
zpbrent
Create Streamlit app.py
7ee94bd
over 1 year ago
raw
Copy download link
history
blame
Safe
88 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)