Hello. Is it possible to have the streamlit radio button to nothing? So for the example below, how could I have streamlit not select any of the options in the beginning.
genre = st.radio(
"What's your favorite movie genre",
('Comedy', 'Drama', 'Documentary'))
if genre == 'Comedy':
st.write('You selected comedy.')
else:
st.write("You didn't select comedy.")
Hi @Shawn_Pereira.This does work. But I am wondering if there is a way to just keep it to two radio buttons as supposed to 3 and have nothing selected.