Streamlit_Demo / app.py
Davies's picture
añadimos app.py
377d3f6
raw
history blame
93 Bytes
import streamlit as st
x= st.slider("Selecciona un valor")
st.write(x,"el cuadrado es", x*x)