demo_streamlit / app.py
espejelomar's picture
Cambiar título
a4b3cf4
raw
history blame
171 Bytes
import streamlit as st
st.title("Mi segundo demo con streamlit")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.markdown("Este es un texto en MD.")