码迷,mamicode.com
首页 > 编程语言 > 详细

Python中的一切皆对象的理解

时间:2018-06-10 12:12:05      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:python   int   定义类   一个   函数   person   div   pre   col   

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   int   定义类   一个   函数   person   div   pre   col   

原文地址:https://www.cnblogs.com/icekx/p/9162201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!