Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. import csv
  4.  
  5. with open('prepro_ytrain.csv', 'rb') as csvfile:
  6.     spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|')
  7.     for row in spamreader:
  8.         print ', '.join(row)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement