st.write and magic commands
Streamlit has two easy ways to display information into your app, which should typically be the
first thing you try: st.write and magic.
st.write
Write arguments to the app.
Python
st.write_stream
Write generators or streams to the app with a typewriter effect.
Python
Magic
Any time Streamlit sees either a variable or literal value on its own line, it automatically writes that to your app using st.write
Python
Still have questions?
Our forums are full of helpful information and Streamlit experts.