gpt4 book ai didi

Python - 属性错误 '_io.TextIOWrapper' 对象没有属性 'open'

转载 作者:太空宇宙 更新时间:2023-11-04 01:05:25 28 4
gpt4 key购买 nike

我收到一个错误

File.open(classname+'.txt','a')
AttributeError: '_io.TextIOWrapper' object has no attribute 'open'

尝试打开文件时。我需要打开文件并将分数写入文件。

这是代码

if Exists==False:
File.open(classname+'.txt','a')
File.write(name+','+surname+','+str(1)+','+str(score)+'/n')

else:
File=open(classname+'.txt','w')
linecount=len(filelines)
for i in range(0,linecount):
File.write(filelines[i])

最佳答案

应该是

File=open(classname+'.txt','a')
File.write(name+','+surname+','+str(1)+','+str(score)+'/n')
File.close()

关于Python - 属性错误 '_io.TextIOWrapper' 对象没有属性 'open',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30728990/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com