Series
Argument Parameter [Python] Keyword Arguments
More Code
2018. 6. 24. 19:36
# 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
"""