File size: 126 Bytes
232b884
 
 
 
 
1
2
3
4
5
import streamlit as st
import pandas as pd

df = pd.DataFrame({'col1': [1, 2, 3, 4, 5], 'col2': [5, 4, 3, 2, 1]})
st.table(df)