mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-29 06:07:32 +00:00
10 lines
194 B
Python
10 lines
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
|