Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
julenalvaro
/
space1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1aaa4ab
space1
/
app.py
julenalvaro
Cambio en app
1aaa4ab
about 2 years ago
raw
Copy download link
history
blame
Safe
189 Bytes
import
streamlit
as
st
st.title(
"Mi primer app"
)
st.markdown(
"## Este es un subtitulo"
)
x = st.slider(
"Selecciona un valor"
)
# π this is a widget
st.write(x,
"al cuadrado es"
, x * x)