Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mwe11s
/
ChatOps
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8e3c06c
ChatOps
/
app.py
mwe11s
Update app.py
8e3c06c
almost 2 years ago
raw
Copy download link
history
blame
122 Bytes
import
streamlit
as
st
st.set_page_config(layout=
"wide"
)
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)