summaryrefslogtreecommitdiffhomepage
path: root/zh-tw/python-tw.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'zh-tw/python-tw.html.markdown')
-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
# 你也可以寫上參數名稱來呼叫函式