Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dmccreary
/
spaces-demo
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6ef9f9c
spaces-demo
/
app.py
dmccreary
updated app
6ef9f9c
over 2 years ago
raw
Copy download link
history
blame
Safe
151 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'Input (x) : '
, x)
st.write(x,
'x squared: '
, x * x)
st.write(x,
'x + x : '
, x + x)