Selection Widgets with Streamlit
Learn how to make selections with Streamlit widgets.
We'll cover the following...
Selection of single item
If we want users to select just one item out of several options, Streamlit offers the following three widgets:
st.radio()
st.selectbox()
st.select_slider()
We need to provide both a label that ...