File size: 158 Bytes
8cbe67d
 
 
 
 
 
 
1
2
3
4
5
6
7
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)