Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
hanbin
/
MaMaL-Sum
like
0
Sleeping
App
Files
Files
Community
a31e3cd
MaMaL-Sum
/
app.py
hanbin
Create app.py
a31e3cd
over 1 year 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)