Thank you Jess for all your great tutorials!!! Just a reminder if someone face this: is no longer "beta_set_page_config('page_title')" now is "set_page_config('page_title')"
Why is the page icon not changing on my side? I just added the same parameter "page_icon" to the set_page_config function with the value ":smiley:". However, I still see the streamlit icon only...
Great videos Thanks. I have a question about selectbox: After selecting a value how can a person set the value back to the default value only using code?
Hi, you can rely on the if,elif else conditional and make the default to fallback to the else condition. eg choice = st.selectbox('Choice',['A','B',C','Default']) if choice == 'A': do something else: ''use 'Default''' Alternatively you can also use the multiselect(default='Your default') if you are working with multi-selection. Hope this helps
Thank you Jess for all your great tutorials!!! Just a reminder if someone face this: is no longer "beta_set_page_config('page_title')" now is "set_page_config('page_title')"
Thanks for the tip!
thank you so much! You saved me!
Thanks bro
Why is the page icon not changing on my side? I just added the same parameter "page_icon" to the set_page_config function with the value ":smiley:". However, I still see the streamlit icon only...
Nice Tutorial!
Glad it was helpful! Rakesh
Great videos Thanks. I have a question about selectbox: After selecting a value how can a person set the value back to the default value only using code?
Hi, you can rely on the if,elif else conditional and make the default to fallback to the else condition.
eg
choice = st.selectbox('Choice',['A','B',C','Default'])
if choice == 'A':
do something
else:
''use 'Default'''
Alternatively you can also use the multiselect(default='Your default') if you are working with multi-selection.
Hope this helps
Nice tutorial, the nav bar in the right can also remove or change?
Yes you can!
it's possible to add a image at the sidebar?
Yes Felipe you can .
@@JCharisTech i was wondering, how??
Is it possible to remove "Streamlit" from the page name?
Yes definitely
@@JCharisTech could you specify how?
Thnx.
You're welcome!