欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python如何打印变量的类型

程序员文章站 2022-04-29 20:31:41
...

对于基本类型使用type函数,即

print type(a)

 对于对象,使用__class__,或者直接str()

print a.__class__
print str(a)

 

参考:http://outofmemory.cn/code-snippet/13637/python-get-type-of-variable-or-instance