streamlit_demo / app.py
espejelomar's picture
Agregar demo
4f1ff29
raw
history blame contribute delete
178 Bytes
import streamlit as st
st.title('This is a title')
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.markdown('Este es un demo de cómo funciona streamlit!')