diff options
author | Hinet60613 <hinet60613@gmail.com> | 2015-12-17 01:51:19 +0800 |
---|---|---|
committer | Hinet60613 <hinet60613@gmail.com> | 2015-12-17 01:51:19 +0800 |
commit | 4b4024b49581d0f80aa3ce815b726bac1af99ef7 (patch) | |
tree | f8321467605e991459e59a48cb77bbabab33c9fa | |
parent | b19714080a8ac76c027851e9b4c80372def81f7b (diff) |
Fix typo
-rw-r--r-- | zh-tw/python-tw.html.markdown | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/zh-tw/python-tw.html.markdown b/zh-tw/python-tw.html.markdown index f8602769..553181d8 100644 --- a/zh-tw/python-tw.html.markdown +++ b/zh-tw/python-tw.html.markdown @@ -550,10 +550,8 @@ class Human(object): species = "H. sapiens" # 基礎建構函式,當class被實體化的時候會被呼叫 - # 注意前後的雙底線代表物件 - # 還有被python用,但實際上是在使用者控制的命名 - # 空間內的參數。你不應該自己宣告這樣的名稱。 - # 注意前後的雙底線代表此物件或屬性雖然在使用者控制的命名空間內,但是被python使用 + # 注意前後的雙底線 + # 代表此物件或屬性雖然在使用者控制的命名空間內,但是被python使用 def __init__(self, name): # 將函式引入的參數 name 指定給實體的 name 參數 self.name = name |