Write a Python program to iterate over two lists simultaneously in column 1&2 and compute the difference in column 3. code example
Example 1: looping through two lists python
for f, b in zip(foo, bar):
print(f, b)
Example 2: loop two lists python
for f, b in zip(foo, bar):
print(f, b)