File size: 256 Bytes
89e6a9b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
import pandas as pd
import numpy as np

st.title('My test App')
st.write("Here's our first attempt at using data to create a ***table***:")
st.write(pd.DataFrame({
    'first col': [1, 2, 3, 4],
    'second col': [10, 20, 30, 40]
}))