import streamlit as st st.title("This is my title") st.markdown("This is my description") x = st.slider("Select a value") st.write(x," the square is ", x*x)