1Host_Country = st.selectbox('Select HomeTeamName name:',('France', 'Spain', 'Italy', 'England', 'Belgium', 'Portugal','Sweden'))
2st.write('You selected:', Host_Country)
1# Add selectbox in streamlit
2>>> option = st.selectbox(
3... 'How would you like to be contacted?',
4... ('Email', 'Home phone', 'Mobile phone'))
5>>>
6>>> st.write('You selected:', option)