import streamlit as st
st.title("Streamlit Workshop")
streamlit run main.py
st.header("Hello world")
st.subheader("This is SubSection")
st.text("This is a simple text line.")
st.markdown("**Bold text**, _italic text_, and `code`")
st.write("Hello World!")
st.write(123)
st.write({"A": 10, "B": 20})
st.caption("Built using Streamlit")
st.code("for i in range(5): st.write(i)", language="python")