list1=1
list2=10
list3=100
for i in range (1,4):
print(listi)
For example, I have 3 lists where their names are the same for the list but different from i. How can I print list(i) in a simple way?
list1=1
list2=10
list3=100
for i in range (1,4):
print(listi)
For example, I have 3 lists where their names are the same for the list but different from i. How can I print list(i) in a simple way?