Spaces:
Sleeping
Sleeping
File size: 282 Bytes
8caf9d5 e6a5d7c 8caf9d5 fd195ff |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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") |