Contact: aviboots(AT)netvision.net.il
40,904 questions
53,356 answers
573 users
list_of_lists = [[3.14, 'pi', 8], [1.78, 'width', 12], [7.67, 'height', 16]] for col in zip(*list_of_lists): print(*col, sep=' ') ''' run: 3.14 1.78 7.67 pi width height 8 12 16 '''