I have 4 lists, I want to iterate through the fours at once. here's an example of what I want to achieve
I'm on Python 3.8
list1 = [1,2,3]
list2 = [10,20,30]
list3 = [44,55,66]
list4 = ['a', 'b', 'c']
for i,j,k,,l in (list1, list2, list3, list4):
print(i,j,k,l)
Output:
1, 10, 44, a
2, 20, 55, b
3, 30, 66, c
How can I achieve that ?
Thanks,