Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Segizu
/
space1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
space1
/
app.py
Segizu
cambio title
1e5617b
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
213 Bytes
import
streamlit
as
st
st.title(
'Eleva un número al cuadrado'
)
st.write(
'Desliza el control deslizante para seleccionar un valor'
)
x = st.slider(
'Seleccioina un valor'
)
st.write(x,
'al cuadrado es'
, x * x)