gpt4 book ai didi

Python: 'str' 对象不可调用

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

我有以下代码

f = open('BigTestFile','w');
str = '0123456789'
for i in range(100000000):
if i % 1000000 == 0:
print(str(i / 1000000) + ' % done')
f.write(str)
f.close()

当我运行它时,我得到了这个TypeError:

Traceback (most recent call last):
File "gen_big_file.py", line 8, in <module>
print(str(i / 1000000) + ' % done')
TypeError: 'str' object is not callable

这是为什么呢?如何修复?

最佳答案

将变量称为 str 以外的名称。它正在跟踪 str built in function.

关于Python: 'str' 对象不可调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17963264/

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