Spaces:
Sleeping
Sleeping
File size: 289 Bytes
8caf9d5 064aca6 8caf9d5 dd441f5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
x = st.slider('Select a value123456abcde')
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")
|