标签:字符 pre -- pytho style 类型 返回 none 检查
# 通过类型检查,可以检查指定值(变量)的类型 # 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‘>
标签:字符 pre -- pytho style 类型 返回 none 检查
原文地址:https://www.cnblogs.com/oyaisusu/p/12520237.html