From 66c6d3cba071440aa8143833e1a9f181a4f8a7aa Mon Sep 17 00:00:00 2001 From: TianLun Song Date: Sun, 21 Nov 2021 17:44:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=99=E5=88=AB=E5=AD=97?= =?UTF-8?q?=20=20=E7=A7=8D=20->=20=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Article/PythonBasis/python9/5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Article/PythonBasis/python9/5.md b/Article/PythonBasis/python9/5.md index 93cc20e..06ccbce 100644 --- a/Article/PythonBasis/python9/5.md +++ b/Article/PythonBasis/python9/5.md @@ -8,7 +8,7 @@ 注意,我们自己的变量一般不要用这种变量名;类似 `_xxx` 和 `__xxx` 这样的函数或变量就是非公开的(private),不应该被直接引用,比如 `_abc` ,`__abc` 等; -**这里是说不应该,而不是不能。因为 Python 种并没有一种方法可以完全限制访问 private 函数或变量,但是,从编程习惯上不应该引用 private 函数或变量。** +**这里是说不应该,而不是不能。因为 Python 中并没有一种方法可以完全限制访问 private 函数或变量,但是,从编程习惯上不应该引用 private 函数或变量。** 比如: