I want to be able to simultaneously interact with both list1 = list('asdf'), and with list2 = list('qwer'). What is the best approach?
for i, p in list1, list2:
print(i,p)
Where it iwill be an increment list1, but pwill increase list2.
source
share