Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fexeak
/
demo-app
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f4ce215
demo-app
/
app.py
fexeak
test commit
f4ce215
about 2 years ago
raw
Copy download link
history
blame
Safe
132 Bytes
import
streamlit
as
st
print
(
"this is demo app version 09261349"
)
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)