Spaces:
Sleeping
Sleeping
nan-motherboard
commited on
Commit
·
dd441f5
1
Parent(s):
064aca6
test4
Browse files
app.py
CHANGED
@@ -2,3 +2,13 @@ import streamlit as st
|
|
2 |
|
3 |
x = st.slider('Select a value123456abcde')
|
4 |
st.write(x, 'squared is', x * x)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
x = st.slider('Select a value123456abcde')
|
4 |
st.write(x, 'squared is', x * x)
|
5 |
+
|
6 |
+
# product
|
7 |
+
product=st.text_input("product")
|
8 |
+
# gender
|
9 |
+
gender=st.radio("gender", ["male", "female"])
|
10 |
+
# profession
|
11 |
+
profession=st.text_input("profession")
|
12 |
+
# hobby
|
13 |
+
hobby=st.text_input("hobby")
|
14 |
+
|