这是我的代码:
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'
答案 0 :(得分:1)
您需要使用:
file.write ()
您已经打开了附加文件