File size: 115 Bytes
9c97ad5
 
 
 
 
 
1
2
3
4
5
6
7
import streamlit as st
import pandas as pd

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