开发者学堂课程【Python入门 2020年版:内置属性】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/639/detail/10377
内置属性
内容介绍:
一、代码引例
二、内置属性
一、代码引例
新建 python 文件,命名为04-内置属性。
加入代码:
class Person(object):
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(‘张三’,18)
方法在计算机本质中也算一个属性,一个 name 对应的值是 zhangsan,age 对应的是18,eat 属性对应的是一个函数。
行为也可以是一个属性,不过对应的是一个函数而已。
查询所有的属性和方法:
加入 print(dir(p))
代码内容为:
class Person(object):
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
运行结果为:
dir 就是把所有的属性和行为全部列出来了,后面的是刚刚添加的,而前面的全是内置属性。
二、内置属性
(1)print(p.__class__)可以看出来是什么类
代码内容为:
class Person(object):
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
运行结果为:
(2)print(p.__dict__)
加入 print(p.__dict__),就会把设置的属性作为字典解释出来,可以理解为把对象属性和值转换成为一个字典
代码内容为:
class Person(object):
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
print(p.__dict__)
运行结果为:
(3)p.__dir__:
加入函数 print(p.__dir__()),等价于 dir(p).dir 是 buildins 里的一个内置函数
代码内容为:
class Person(object):
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
print(p.__dict__)
print(p.__dir__)
(4)p.__doc__()
加入 print(p.)
代码内容为:
class Person(object):
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
print(p.__dict__)
运行后的结果为:
(5)之前有过一个写注释的,在类中写一个多行注释
这是一个人类
代码内容为:
class Person(object):
“””
这是一个人类
““”
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
print(p.__dict__)
print(p.__dir__ )
print(p.__doc__)
运行后的结果为:
会拿到内容。
当一个类功能很强大的时候,东西比较多的时候可以进行一个说明
(6)print(range.__doc__)
对象名.__doc__
代码内容为:
class Person(object):
“””
这是一个人类
““”
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
print(p.__dict__)
print(p.__dir__ )
print(p.__doc__)
print(range.__doc__)
运行后的结果为:拿到 range 说明的一大推内容.
也可以换成 print(Person.__doc__),类名.__doc__是类似的。
(7)下面还有很多方法,__ge__,__getattribute__,__gt__,__hash__等多种方法。
加入语句 print(p.__module__)
代码内容为:
class Person(object):
“””
这是一个人类
““”
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
print(p.__dict__)
print(p.__dir__ )
print(p.__doc__)
print(range.__doc__)
print(p.__module__)
运行后的结果为:
它提供了许多种函数,但不是每一个函数都要使用
加入语句 print(p.__slots__),如果只拿的话,运行后会报错:
加入 print(Person.__slots__)
__slots__ = (‘name’,’age’)
代码内容为:
class Person(object):
“””
这是一个人类
““”
__slots__ = (
‘name’,’age’)
def __init__(self,name,age):
self.name = name
self.age = age
def eat(self):
print(self.name +
‘正在吃饭’)
p = Preson(
‘张三’,18)
print(dir(p))
print(p.__class__)
print(p.__dict__)
print(p.__dir__ )
print(p.__doc__)
print(range.__doc__)
print(p.__module__)
print(Person.__slots__)
__dict__是变成一个字典;
__getitem__.\__setitem__和__delitem__方法,这三个方法都是魔法方法,它们是有使用场景