Python3---常见函数---type()
Posted 我是谁9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3---常见函数---type()相关的知识,希望对你有一定的参考价值。
0X01;功能描述
type() 函数如果你只有第一个参数则返回对象的类型,三个参数返回新的类型对象。
0X02;语法:
type(object)
type(name,bases,dict)
- name -- 类的名称。
- bases -- 基类的元组。
- dict -- 字典,类内定义的命名空间变量。
0X03;举例:
1 print(type(1)) 2 print(type(‘1‘)) 3 print(type([2]))
#运行结果: C:UsersaaronDesktopPytoon-cadevenvScriptspython.exe C:/Users/aaron/Desktop/Pytoon-cade/urllib-Study.py <class ‘int‘> <class ‘str‘> <class ‘list‘> Process finished with exit code 0
以上是关于Python3---常见函数---type()的主要内容,如果未能解决你的问题,请参考以下文章