Spaces:
Runtime error
Runtime error
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) |