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] }))