How to add columns and rows from a list? #1116
Unanswered
raqibhayder
asked this question in
Q&A
Replies: 1 comment
-
table = Table(*column_names)
for row in rows:
table.add_row(*rows) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to pass in the columns of the table as a list? and then add each row as a list?
Given I have this:
I want to be able to do this:
or even this:
Beta Was this translation helpful? Give feedback.
All reactions