Spaces:
Sleeping
Sleeping
import streamlit as st | |
x = st.slider('Select a value123456') | |
st.write(x, 'squared is', x * x) | |
# product | |
product=st.text_input("product") | |
# gender | |
gender=st.radio("gender", ["male", "female"]) | |
# profession | |
profession=st.text_input("profession") | |
# hobby | |
hobby=st.text_input("hobby") |