rriverar75's picture
Update app.py
ff50746
raw
history blame contribute delete
188 Bytes
import streamlit as st
st.title("Demo Streamlit con Slider")
st.markdown("Acá va la descripcion")
x = st.slider("Selecciona un valor")
st.write(x, "el cuadrado es", x * x, fontsize=20)