Spaces:
Runtime error
Runtime error
File size: 155 Bytes
dd0ef30 |
1 2 3 4 5 6 7 8 |
import streamlit as st
import pandas as pd
st.write(1234)
st.write(
pd.DataFrame({"first column": [1, 2, 3, 4], "second column": [10, 20, 30, 40]})
)
|