Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.title("this is my demo") | |
st.markdown("## this is my description") | |
x = st.slider('Select a value') | |
st.write(x, 'squared is', x * x) |