Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
llm-council
/
sandbox
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
663a6db
sandbox
/
app.py
justinxzhao
Add application file
663a6db
7 months ago
raw
Copy download link
history
blame
Safe
89 Bytes
import
streamlit
as
st
x = st.slider(
"Select a value"
)
st.write(x,
"squared is"
, x * x)