我试图在Python中附加一个列表,但发生了错误

时间:2016-02-02 09:12:03

标签: python list append

这是我的代码:

file = open("newList.txt","a")
file.append(newList)
file.append(newDict)
file.close()

Traceback是:

file.append(newList)
AttributeError: '_io.TextIOWrapper' object has no attribute 'append'

1 个答案:

答案 0 :(得分:1)

您需要使用:

file.write ()

您已经打开了附加文件