Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Santenana
/
space1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
space1
/
app.py
santenana
cambio en la app
1f0c243
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
181 Bytes
import
streamlit
as
st
st.title(
"Este es mi demo"
)
st.markdown(
"Linea que calcula el cuadrado de un numero"
)
x = st.slider(
"Sleccionar un valor"
)
st.write(x,
"el Cuadrado es "
,x * x)