File size: 156 Bytes
be34eaa
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import streamlit as st

st.title("try my demo app")
st.markdown("this is my description")

x = st.slider("select a value")
st.write(x, "squared is", x * x)