python---类型检查
Posted Gerdan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python---类型检查相关的知识,希望对你有一定的参考价值。
# 通过类型检查,可以检查指定值(变量)的类型 # a=123 数值 # b=‘123‘ 字符串 # type()用来检查值得类型 # 该函数会将检查的结果作为返回值返回,可以通过变量来接受函数的返回值 # c = type(‘123‘) # print(c) 结果为<class ‘str‘> print(type(2)) <class ‘int‘> print(type(2.6)) <class ‘float‘> print(type(True)) <class ‘bool‘> print(type(None)) <class ‘NoneType‘>
以上是关于python---类型检查的主要内容,如果未能解决你的问题,请参考以下文章
text [检查特定的数据片段]取自论文但有意思应用。 #python #pandas