怎么查看python变量值
有时候我们需要知道变量类型,但不知道如何查看
内置函数isinstance(object, (type1,type2...))
isinstance('content', str)
返回
True or False
使用内置函数type(object)
type()就是一个最实用又简单的查看数据类型的方法。type()是一个内建的函数,调用它就能够得到一个反回值,从而知道想要查询的对
像类型信息。
type使用方法
>>>type(1)<type 'int'> #返回整形
>>>type('content')
<type 'str'> #返回字符串
type返回值属于type类型
>>>type(type(1))<type 'type'> #返回type类型
更多技术请关注云海天Python教程。
以上是 怎么查看python变量值 的全部内容, 来源链接: utcz.com/z/525460.html