I wanted to iterate through two lists at the same time while also being able to increment a variable: I am able to achieve this but incrementing row manually.
for name, time in zip(Linklist, Timelist):
worksheet.write(row, col, name)
worksheet.write(row, col + 1, time)
row=row+1
Trying to see if something like this can be done:
for row, name, time in zip(Linklist, Timelist):
worksheet.write(row, col, name)
worksheet.write(row, col + 1, time)