<aside> 💡

No HTML. No CSS. No JavaScript. Just Python.

</aside>


1. Streamlit

Streamlit turns a Python script into an interactive app.

You write Python. Streamlit renders the interface in the browser.

🧑‍💻 Install

uv add streamlit

Create

import streamlit as st

st.title("Hello World")

Run

streamlit run main.py

Browser opens. Your app is live.


2. Text

Use titles, headers, and text to display information.

🧑‍💻 Example

st.title("Student Dashboard")
st.header("Python Course")
st.write("Welcome to Streamlit!")

📌 Summary

Task Code
Big title st.title("text")
Section header st.header("text")
General text st.write("text")