Guest User

Untitled

a guest
Jul 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. with open('mycsvfile.csv', 'w', newline='') as csvfile:
  2. w = csv.writer(csvfile)
  3. mapped = zip(ADSclassObj.bibcodes, ADSclassObj.authors, ADSclassObj.affs)
  4. mapped = list(mapped)
  5. print (mapped)
  6. for x in mapped:
  7. w.writerow(x)
Add Comment
Please, Sign In to add comment