黑呼呼的小白 发表于 2020-1-30 14:38:16

为什么它打印不出来?

while count > 0:
        print("ilovefishc.com")
        count = count - 1

       
Traceback (most recent call last):
File "<pyshell#25>", line 2, in <module>
    print("ilovefishc.com")
TypeError: 'str' object is not callable

wp231957 发表于 2020-1-30 14:39:21

count没有初始值

zltzlt 发表于 2020-1-30 14:39:43

先执行 del print,再执行那段代码。
页: [1]
查看完整版本: 为什么它打印不出来?