AttributeError:' file'对象没有属性'追加'

时间:2017-11-16 12:58:07

标签: python

我对这件事真的很陌生,所以请原谅这个可能很愚蠢的问题,但我自己找不到答案太愚蠢了。

我有一个包含链接网址和时间戳的列表,并希望缩短网址并将结果保存到新文件中。 但是运行

file = open('history.csv','r')
clean = open('historyclean.csv','a')

for x in file:
    b = x.rsplit('/',1)
    b.pop()
        clean.append(b)

结果

    AttributeError: 'file' object has no attribute 'append'

我无法找到原因。 我正在使用Python 2.7,如果相关

提前致谢。

1 个答案:

答案 0 :(得分:0)

您可能想要clean.write,而不是clean.append。由于错误状态文件没有追加操作。