Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hola-ivan
/
curriculum-customization-tool
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
efc4cf7
curriculum-customization-tool
/
app.py
ME
Create app.py
efc4cf7
verified
10 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)