EmailGeneration / app.py
nan-motherboard
2
fd195ff
raw
history blame
282 Bytes
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")