MareArts blog / Computer Vision & Artificial Intelligent Systems
ListOfList = [ ['abcd',1], ['efgh',2], ['ijkl',3]] print(ListOfList)
print('row 0', [row[0] for row in ListOfList] ) print('row 1', [row[1] for row in ListOfList] )