Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
danhergir
/
image_generator
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
daa126b
image_generator
/
app.py
danhergir
App change
daa126b
11 months ago
raw
Copy download link
history
blame
Safe
165 Bytes
import
streamlit
as
st
st.title(
'This is my demo'
)
st.markdown(
'This is my description'
)
x = st.slider(
'Selecciona un valor'
)
st.write(x,
'el cuadrado es '
, x * x)