Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. with open("file.csv", "r") as file:
  2. myFile = csv.reader(file, delimiter = ",")
  3. for row in myFile:
  4. print row
  5.  
  6. with open("file.csv", "r") as file:
  7. myFile = csv.reader(file, delimiter = ",")
  8. for row in myFile:
  9. print ",".join(row)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement