copipe Python | 関数を定義する。

概要

def 関数名(引数)を使って、関数を定義することができる。

コード

def f(a):
    b = a+3
    return b

c = f(5)
print(c)

結果

8