0
How to add table in python
I stored my data in list and I want to create table . I want fill values from list into table
2 Answers
+ 2
If you mean storing data in a named rows and columns, you can use dataframe object from pandas library
+ 1
Or you could use a multidemenional list or a dictionary with lists (or other dictionaries) as values