标签: python python-2.7 nonetype
我有以下两行代码:
print(test) print(test.type())
代码打印出一些内容,即test的值。但是,当我通过test.type()检查测试类型时,我收到错误TypeError: 'NoneType' object is not callable。这怎么可能?
test
test.type()
TypeError: 'NoneType' object is not callable
答案 0 :(得分:4)
test.type为无。
test.type
改为使用type(test)。
type(test)