の
<open file 'amount2.csv', mode 'r' at 0x1004656f0>
あなたが見ているのはエラーではありませんが、「print f」の結果です。代わりにファイルの内容を表示するには、次のようにします
with open('test.csv', 'rb') as f:
reader = csv.reader(f)
for row in reader:
# row is a list of strings
# use string.join to put them together
print ', '.join(row)
ファイルに行を追加するには、代わりに
changes = [
['1 dozen','12'],
['1 banana','13'],
['1 dollar','elephant','heffalump'],
]
with open('test.csv', 'ab') as f:
writer = csv.writer(f)
writer.writerows(changes)
詳細については、Python CSV Docsを参照してください。
編集:
最初は誤解していましたが、csv ファイルで「1 ダース」のすべてのエントリを「12」に変更したいのです。最初に言っておきますが、これは csv モジュールを使用しない方が簡単ですが、これを使用したソリューションを次に示します。
import csv
new_rows = [] # a holder for our modified rows when we make them
changes = { # a dictionary of changes to make, find 'key' substitue with 'value'
'1 dozen' : '12', # I assume both 'key' and 'value' are strings
}
with open('test.csv', 'rb') as f:
reader = csv.reader(f) # pass the file to our csv reader
for row in reader: # iterate over the rows in the file
new_row = row # at first, just copy the row
for key, value in changes.items(): # iterate over 'changes' dictionary
new_row = [ x.replace(key, value) for x in new_row ] # make the substitutions
new_rows.append(new_row) # add the modified rows
with open('test.csv', 'wb') as f:
# Overwrite the old file with the modified rows
writer = csv.writer(f)
writer.writerows(new_rows)
あなたがプログラミングとPythonに慣れていない場合、最も厄介な行はおそらく
new_row = [ x.replace(key, value) for x in new_row ]
しかし、これは事実上同等のリスト内包表記です。
temp = []
for x in new_row:
temp.append( x.replace(key, value) )
new_row = temp