Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zpbrent
/
test_streamlit
like
0
Sleeping
App
Files
Files
Community
d9dba9a
test_streamlit
/
app.py
zpbrent
Rename Streamlit app.py to app.py
d9dba9a
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)