I have 2 lists each of equal size and am interested to combine these two lists and write it into a file.
alist=[1,2,3,5]
blist=[2,3,4,5]
--the resulting list should be like [(1,2), (2,3), (3,4), (5,5)]
After that i want that to be written it to a file. How can i accomplish this?