Python中查看变量数据类型

内置函数isinstance(object, (type1,type2…))

isinstance('content', str)

返回True or False

使用内置函数type(object)

print(type(1)) 
print(type('content'))

输出

<type 'int'>    #返回整形
<type 'str'>    #返回字符串 
    原文作者:angus_monroe
    原文地址: https://blog.csdn.net/angus_monroe/article/details/79986485
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞