"help" argument in Streamlit

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 )

Hi @LY0101, welcome to the Streamlit community!

If you are getting an error that a keyword doesn’t exist, it might be the case that you need to update your version of Streamlit. What version are you currently using?

Best,
Randy