mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 03:52:14 +00:00
10 lines
No EOL
194 B
Python
10 lines
No EOL
194 B
Python
import csv
|
|
|
|
data = csv.reader(open('/home/slappybag/backrs/800dollar.csv', 'rb'), delimiter=",", quotechar='|')
|
|
column = []
|
|
|
|
for row in data:
|
|
column.append(row[9])
|
|
|
|
print "one:"
|
|
print column |