image_generator / app.py
danhergir's picture
App change
daa126b
raw
history blame
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)