python 笔记type() isinstance()
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 笔记type() isinstance()相关的知识,希望对你有一定的参考价值。
type():返回参数的数据类型 例:type(2) 返回<class ‘int‘>
isinstance():返回true or false 比较参数是否是某个类型 例:a="你好" isinstance(a,str) 返回true
以上是关于python 笔记type() isinstance()的主要内容,如果未能解决你的问题,请参考以下文章