目次
はじめに
def
文を使って関数を定義することができます。
関数の定義方法
関数の基本的な書き方
引数なしの場合
コード
# 関数の定義
def sample():
print('sample string.')
# 関数を呼び出す
sample()
実行結果
sample string.
引数ありの場合
コード
# 関数の定義
def sample(a, b):
print(a+b)
# 関数を呼び出す
sample(10, 20)
実行結果
30
引数に初期値を設定する場合
コード
# 関数の定義
def sample(a=1, b=2):
print(a+b)
# 関数を呼び出す
sample()
実行結果
3
[A8_TechAcademy065]
[Footer]