space1 / app.py
julenalvaro's picture
Cambio en app
1aaa4ab
raw
history blame
189 Bytes
import streamlit as st
st.title("Mi primer app")
st.markdown("## Este es un subtitulo")
x = st.slider("Selecciona un valor") # πŸ‘ˆ this is a widget
st.write(x, "al cuadrado es", x * x)