python一切皆对象

Posted amelie-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python一切皆对象相关的知识,希望对你有一定的参考价值。

类型

  • 类和函数都可以赋值给变量
#object 是顶层基类
a = 1
type(a)     #<class 'int' >
type(int)    #<class 'type'>
b = "abc"
type(b)    #<class 'str'>

class Student:
    pass

stu = Student()
type(stu)  #<class '__main__.Student'>

以上是关于python一切皆对象的主要内容,如果未能解决你的问题,请参考以下文章

第一章: Python中一切皆对象

Python-一切皆对象

Python一切皆对象

python 一切皆对象

python 一切皆对象

python 一切皆对象