80728b1
1
2
3
4
5
6
7
8
# Example 2 : Dropdown Selection st.title("Dropdown Selection Example") # Dropdown menu options = ("Python", "JavaScript", "Java", "C++") chioce = st.selectbox("Choose a programming language :",options) st.write(f"You selected: {chioce}!")