My code:
i=[o for o in range(10000)]
ii=[o for o in range(10000,20000)]
for a,b in i,ii:
print(a,b)
But the above code returns error (too many values to unpack)
I want to get the result as:
1 10001
2 10002
...........
10000 20000
I want to use this to create a download and upload parallel.