Suppose I have 3 lists such as these
l1 = [1,2,3]
l2 = [4,5,6]
l3 = [7,8,9]
how do I get to print out everything from these lists at the s
If you mean that you have 3 lists of equal length and you want to print out their contents as 3 columns, then how about zip() to connect the columns and a list comprehension to print() on each iteration:
[ print(row) for row in zip(l1, l2, l3) ]
The above will print repr's of tuple(s). If you want to format the values otherwise:
[ print("{} / {} / {}".format(*row)) for row in zip(l1, l2, l3) ]
Nobody said you have to use the output of a list comprehension.