summaryrefslogtreecommitdiffhomepage
path: root/zh-tw
diff options
context:
space:
mode:
authorMichael Yeh <hinet60613@gmail.com>2015-11-03 11:13:54 +0800
committerMichael Yeh <hinet60613@gmail.com>2015-11-03 11:13:54 +0800
commit33aad44646b65f7493598cb62d0d59c3edc3afd3 (patch)
treed807b6f8372324f20df8694624991795d5a7e2a2 /zh-tw
parent2ecf370ce4e8b6644863e92652f9b63717ab3e6e (diff)
parenta25d4db0bcfb9325f69f68a2532df6fd88f4e78d (diff)
Merge pull request #1 from RainJayTsai/zh-tw
Merge commit "fix typo"
Diffstat (limited to 'zh-tw')
-rw-r--r--zh-tw/python-tw.html.markdown2
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
# 你也可以寫上參數名稱來呼叫函式