본문 바로가기

Series

Argument Parameter [Python] Keyword Arguments


# Python : Keyword Arguments

def work(a: str, b: str):
print('a:', a)
print('b:', b)


work(b='Big', a='Ace')

""" Output
a: Ace
b: Big
"""