Mummia-99 commited on
Commit
68de82b
·
verified ·
1 Parent(s): e77facc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -39,14 +39,16 @@ with col1:
39
  with col2:
40
  ## Geography
41
  option_geo=["France","Spain","Germany"]
42
- geo=st.selectbox("**Select The Geography:**",options=option_geo)
 
43
  geography_value=option_geo.index(geo)
44
 
45
  col1, col2 = st.columns(2)
46
  with col1:
47
  ## gender
48
  option_gen=["Female "," Male"]
49
- gen=st.selectbox("**Select the Gender**",option_gen)
 
50
  gender_value=option_gen.index(gen)
51
  with col2:
52
  ## Age
 
39
  with col2:
40
  ## Geography
41
  option_geo=["France","Spain","Germany"]
42
+ st.markdown("**Select the Geography:**")
43
+ geo=st.selectbox("",options=option_geo)
44
  geography_value=option_geo.index(geo)
45
 
46
  col1, col2 = st.columns(2)
47
  with col1:
48
  ## gender
49
  option_gen=["Female "," Male"]
50
+ st.markdown("**Select the Gender:**")
51
+ gen=st.selectbox("",option_gen)
52
  gender_value=option_gen.index(gen)
53
  with col2:
54
  ## Age