how to make a drop down box in streamlit code example
Example: streamlit dropdown
# Add selectbox in streamlit
>>> option = st.selectbox(
... 'How would you like to be contacted?',
... ('Email', 'Home phone', 'Mobile phone'))
>>>
>>> st.write('You selected:', option)