diff options
author | rainjay <RainJay0117@gmail.com> | 2015-11-03 11:09:19 +0800 |
---|---|---|
committer | rainjay <RainJay0117@gmail.com> | 2015-11-03 11:09:19 +0800 |
commit | a25d4db0bcfb9325f69f68a2532df6fd88f4e78d (patch) | |
tree | d807b6f8372324f20df8694624991795d5a7e2a2 | |
parent | 2ecf370ce4e8b6644863e92652f9b63717ab3e6e (diff) |
fix typo
-rw-r--r-- | zh-tw/python-tw.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-tw/python-tw.html.markdown b/zh-tw/python-tw.html.markdown index 10b4669c..c4706c43 100644 --- a/zh-tw/python-tw.html.markdown +++ b/zh-tw/python-tw.html.markdown @@ -450,7 +450,7 @@ def add(x, y): print "x is {0} and y is {1}".format(x, y) return x + y # 用 "return" 來回傳值 -# 用參數來呼叫韓式 +# 用參數來呼叫函式 add(5, 6) # => 輸出 "x is 5 and y is 6" 並回傳 11 # 你也可以寫上參數名稱來呼叫函式 |