I have list1,list2, list4... and want to print them out one by one using a for loop with range(5).
How can I skip the list0 and list3
Also, the variable file into the print(file) yet.
Can you please help?
Thank you, HN
list1={1,10}
list2={2,20}
list4={4,40}
for i in range(5):
file='list'+str(i)
print(file)