Advertisement
sonofbelial

Python Program

Dec 5th, 2012
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. #!/usr/bin/env python2
  2. import csv
  3. with open ('googlePrices.csv', 'rb') as csvFile:
  4.     reader = csv.reader(csvFile, quoting = csv.QUOTE_NONNUMERIC)
  5.     reader.next()
  6.     for row in reader:
  7.             print row
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement