Spaces:
Build error
Build error
File size: 222 Bytes
859305c |
1 2 3 4 5 6 7 8 9 10 11 12 |
import streamlit as st
#
st.title("Square Estimator Demo")
# Markdown
st.markdown("Main Description")
# Slider set-up to store a numerical value
x = st.slider("Choose a value: ")
#
st.write(x, "the square is ", x * x)
|