Skip to content

Instantly share code, notes, and snippets.

@talaatmagdyx
Created December 25, 2024 00:40
Show Gist options
  • Select an option

  • Save talaatmagdyx/549b04e10eaf3e94f3b209f73c543feb to your computer and use it in GitHub Desktop.

Select an option

Save talaatmagdyx/549b04e10eaf3e94f3b209f73c543feb to your computer and use it in GitHub Desktop.
import streamlit as st
# Add a dropdown menu
option = st.selectbox(
"What's your favorite programming language?",
["Python", "JavaScript", "C++", "Java"]
)
st.write(f"You selected: {option}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment