Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jdgalvan
/
space1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0e9c05f
space1
/
app.py
jdgalvan
Cambios en app.py
0e9c05f
about 2 years ago
raw
Copy download link
history
blame
Safe
156 Bytes
import
streamlit
as
st
st.title(
"Mi Demo"
)
st.markdown(
"Esta es mi descripcion"
)
x = st.slider(
"Selecciona un valor: "
)
st.write(x,
"El cuadrado es "
, x*x)