Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. with open('/home/kwal0203/Desktop/eggs.csv', 'a') as csvfile:
  2. ... writer = csv.writer(csvfile)
  3. ... writer.writerow("Hello my friend")
  4.  
  5. with open('/home/kwal0203/Desktop/eggs.csv', 'a') as csvfile:
  6. ... writer = csv.writer(csvfile, delimiter = ' ')
  7. ... writer.writerow("Hello my friend")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement