myFirstApp / app.py
akooiker's picture
updated appfile
b340eb8
raw
history blame contribute delete
256 Bytes
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]
}))