python关闭csv文件,Python 2.7.1:如何打开,编辑和关闭CSV文件

I'm having trouble opening a file (amount2.csv) making a change, saving it and closing the file.

How does one open a file edit, save and close it?

import csv

changes = {

'1 dozen' : '12'

}

with open('amount2.csv', 'r') as f:

reader = csv.reader(f)

print f

f.close()

my error: open file 'amount2.csv', mode 'r' at 0x1004656f0

(<> removed)

解决方案

The

you are seeing isn't an error, but the result of your 'print f'. To instead see the contents of your file, you would do

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)

To append rows to your file, instead do

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)

EDIT:

I misunderstood at first, you want to change all entries of '1 dozen' to '12' in your csv file. I will say first, this is easier to do without using the csv module, but here is a solution using it.

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)

If you're new to programming and python the most trobulesome line is probably

new_row = [ x.replace(key, value) for x in new_row ]

but this is just a list comprehension that is effectively equivalent to

temp = []

for x in new_row:

temp.append( x.replace(key, value) )

new_row = temp

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值