Spaces:
Sleeping
Sleeping
File size: 158 Bytes
78f0864 |
1 2 3 4 5 6 7 |
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) |