From 646b4f0427286d2468e0b16ea14712cca2e3f291 Mon Sep 17 00:00:00 2001 From: zouchengxi Date: Thu, 6 Jun 2024 22:01:00 +0800 Subject: [PATCH] add python dir --- blog/source/_posts/subposts_python/### Python.md | 1 - 1 file changed, 1 deletion(-) diff --git a/blog/source/_posts/subposts_python/### Python.md b/blog/source/_posts/subposts_python/### Python.md index 81be5f2..d82e6b0 100644 --- a/blog/source/_posts/subposts_python/### Python.md +++ b/blog/source/_posts/subposts_python/### Python.md @@ -258,7 +258,6 @@ class Fruit(): ``` 两种方式达到的效果,都是当使用`.`操作符访问属性时,调用描述符协议类中的`__get__`等方法,而不是原始的字典lookup方法。同时,描述符协议类中的`__get__`方法等可自定义,相当于提供了一种自定义通过`.`操作符去访问类属性的能力。例如,通过自定义`__set__`方法,可以实现对属性赋值时的参数合理性检查。 -完结撒花。 ##### 参考: