Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
umbc-scify
/
scify-demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b6f3de6
scify-demo
/
app.py
ykl7
initial spaces setup with dummy app file
b6f3de6
about 2 months 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)