Trying to use the “help” argument in st.number_input, but seems like I am getting the following error “TypeError: number_input() got an unexpected keyword argument ‘help’”. I think help may be a special keyword.
Can you provide an example of how to populate the “help” argument with number_input()?
- help ( str ) – A tooltip that gets displayed next to the input.
streamlit.
number_input
( label , min_value=None , max_value=None , value=<streamlit.elements.utils.NoValue object> , step=None , format=None , key=None , help=None )