Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2022
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | Source Code | 0 0
  1. import csv
  2.  
  3. link = (
  4.             ('a', 'b', 'c'),
  5.             ('a', 'b', 'c'),
  6.         )
  7. with open('link.csv', 'w', newline='') as csvfile:
  8.     csvwriter = csv.writer(csvfile)
  9.     csvwriter.writerows(link)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement