st.text_input shows “None” when input value from Dataframe is None. Is there any way to show “” instead of None when the input value is None or null or any other type of na?
I’m having a form to show and fill, so there’re lots of st.text_input to use. I’m now trying “if pd.notna(value): xxx else: xxx” but with lots of st.text_input components, it’s way too complicated.