查看變量類型的python內置函數?
示例說明:
內置函數isinstance(object, (type1,type2…))
isinstance('content', str)
返回True or False
使用內置函數type(object)
print(type(1))
print(type('content'))
輸出
<type 'int'> #返回整形
<type 'str'> #返回字符串
上一篇IBM服務器X3850
下一篇如何開啟VMware串口
查看變量類型的python內置函數?
示例說明:
內置函數isinstance(object, (type1,type2…))
isinstance('content', str)
返回True or False
使用內置函數type(object)
print(type(1))
print(type('content'))
輸出
<type 'int'> #返回整形
<type 'str'> #返回字符串