Lesson1 / DropdownSelection.py
fahadriazkhan's picture
Upload DropdownSelection.py
191e855 verified
raw
history blame contribute delete
241 Bytes
# 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}!")