欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

查看變量類型的python內置函數

錢淋西2年前14瀏覽0評論

查看變量類型的python內置函數?

示例說明:

內置函數isinstance(object, (type1,type2…))

isinstance('content', str)

返回True or False

使用內置函數type(object)

print(type(1))

print(type('content'))

輸出

<type 'int'> #返回整形

<type 'str'> #返回字符串