Hoe create table without header

How can I create a simple table without header?

I tried using markdown table for now but that leaves me with table that doesn’t look good.
Should I just use Dataframe to make a table without header?

Cheers

After searching for a bit I found solution,

style = df.style.hide_index()
style.hide_columns()
st.write(style.to_html(), unsafe_allow_html=True)

Above code hides index and column headers.

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.