import streamlit as st import pandas as pd st.title('My first app') data = pd.read_csv('demo.csv') st.write(data)