Display Text with Streamlit
Explore how to display text elements in Streamlit apps using methods like st.title, st.header, and st.markdown. Understand how to show captions and mathematical equations clearly, and learn to set up your app to rerun automatically after code changes for continuous updates.
We'll cover the following...
We'll cover the following...
The title
This is the first item of text our application will have. It’ll be displayed at the top of the application. We use the st.title() method to display it:
Every time a change is made in the code, the Streamlit application asks if it needs to be run again. To avoid always having to click the “Rerun” button (shown in the image below), we select the “Always rerun” button so the application will rerun automatically after we make changes ...