Python中的一切皆对象的理解

Posted icekx

tags:

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

Python有一个重要的概念,一切皆对象。

一切都可以赋值给变量:

内置类型赋值:

1 >>> a=1
2 >>> b=abc
3 >>> type(a)
4 <class int>
5 >>> type(b)
6 <class str>

将类类型赋值给变量:

1 >>> a=int
2 >>> a(123)
3 123
4 >>> type(a)
5 <class type>

将函数赋值给变量:

1 >>> def my_func(x):
2 ...     print(x)
3 ...
4 >>> a=my_func
5 >>> a(8)
6 8

将自定义类赋值给:

1 >>> class Person:
2 ...     pass
3 ...
4 >>> a=Person
5 >>> p = a()
6 >>> type(p)
7 <class __main__.Person>

。。。

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

Python中万物皆对象?的理解

python 一切皆对象

python 一切皆对象

Pyhton中的元类

python中的一切皆对象

python 一切皆对象