python type() TypeError:“str”对象不可调用

问题描述 投票:0回答:1

我有以下代码:

i=0
type(i)

我收到以下错误:

`TypeError: 'str' object is not callable`

有人可以解释一下吗?

python function variables types compiler-errors
1个回答
-1
投票

我刚刚运行了你的代码,它似乎没有任何错误。

所以,我假设你的问题是你在代码的前面某处定义了类型,如下所示:

type = "string"

#some code

i = 0
type(i)

通常,如果您不定义函数或类,那么这是最佳实践。

© www.soinside.com 2019 - 2024. All rights reserved.