import streamlit as st import pandas as pd st.markdown('# Hello Class! :)') df = pd.read_csv('data/titanic.csv') st.dataframe(df)