Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
RaymundoSGlz
/
Space1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Space1
/
app.py
Raymundo Gonzalez
Agregando app
f73e702
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
192 Bytes
import
streamlit
as
st
st.title(
"Mi primer app de Streamlit"
)
st.markdown(
"Esta es una descripción de mi app"
)
x = st.slider(
"Selecciona un valor: "
)
st.write(x,
"al cuadrado es"
, x * x)