Spaces:
Sleeping
Sleeping
File size: 165 Bytes
daa126b |
1 2 3 4 5 6 7 |
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) |