摘要: __getattr__ 这个魔法函数会在类中查找不到属性时调用 __getattribute__ 阅读全文
posted @ 2019-08-11 17:22 下路派出所 阅读(294) 评论(0) 推荐(0) 编辑
摘要: from datetime import date, datetime class User: def __init__(self, name, birthday): self.name = name self.birthday = birthday self._age = 0 @property def age(self... 阅读全文
posted @ 2019-08-11 17:12 下路派出所 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1. del是删除对象 2. python中的垃圾回收是删除引用计数 阅读全文
posted @ 2019-08-11 10:41 下路派出所 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 1. 一旦初始化,并不可以改变 2. 可以作为字典的键值 阅读全文
posted @ 2019-08-11 10:15 下路派出所 阅读(287) 评论(0) 推荐(0) 编辑