公開:2025-05-28、更新:2025-05-28
8-3「デフォルト値とキーワード引数」 3ページ
マンガ

3
コンテンツ紹介
テキスト原稿
# 3p
__1__
猫野:
このとき少しだけ
ルールがある
デフォルト値を
書かない引数を前に
書く引数を後に
する必要がある
---
__2__
これはよい
```py
def chara1(name, age=0):
res = f'{name}: {age}'
return res
```
---
__3__
これは駄目
```py
def chara2(name='?', age):
res = f'{name}: {age}'
return res
```