Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Datadev17
/
test_only
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test_only
/
app.py
Jesse Henson
add app file
c73abfc
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
90 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)