Streamlit-demo / app.py
Joaquin Romero Flores
app change performed
859305c
raw
history blame contribute delete
222 Bytes
import streamlit as st
#
st.title("Square Estimator Demo")
# Markdown
st.markdown("Main Description")
# Slider set-up to store a numerical value
x = st.slider("Choose a value: ")
#
st.write(x, "the square is ", x * x)