在Python定義函式(function)的方式如下。
Python使用def
關鍵字定義函式。
例如下面使用def
定義一個函式myfunc(s)
,此函式接收一個參數s
。函式第一行以"""
包夾的文字為文件說明字串(docstrings)。
def myfunc(s):
"""This is my funciton"""
print(s)
return None
myfunc("Define a simple Python function")
執行印出以下結果。
Define a simple Python function
定義一個回傳字串結果的函式add(x, y)
如下。
def add(x, y):
return 'x + y = ' + str(x + y)
print(add(1, 2))
執行印出以下結果。
x + y = 3
參考:
沒有留言:
張貼留言