gpt4 book ai didi

python - 为什么我会收到矩阵属性错误 __enter__ ?

转载 作者:行者123 更新时间:2023-12-01 06:57:46 24 4
gpt4 key购买 nike

def save_list():  
f = open('data.txt', 'w')

ii = 0

with itemMatrix[ii] as item:

f.write(item + '\n')

ii += 1

这段代码一直给我错误:第 5 行属性错误 enter(使用 itemMatrix[ii] 作为项目:)

为什么会发生这种情况,如何解决?如果需要更多代码,请告诉我。

感谢您的宝贵时间!

最佳答案

def save_list():
with open('data.txt', 'w') as f:
for item in itemMatrix:
f.write(f"{item}\n")

(使用 f-strings 将元素与换行符一起格式化。)

关于python - 为什么我会收到矩阵属性错误 __enter__ ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58732820/

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