streamlit-app / app.py
johnometalman
lanzamiento de la demo app
f0e4652
raw
history blame contribute delete
177 Bytes
import streamlit as st
st.title('Demo App en Streamlit')
st.markdown('Descripción test de la app ')
x = st.slider('Selecciona un valor')
st.write(x, 'el cuadrado es ', x * x)