티스토리 뷰
# 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
"""
'Series' 카테고리의 다른 글
Detect Windows Architecture [C#] Environment.GetEnvironmentVariable (0) | 2018.06.25 |
---|---|
Detect Windows Architecture [C#] Directory.Exists (Not Good Solution) (0) | 2018.06.25 |
Argument Parameter [C#] Named Arguments (0) | 2018.06.24 |
Argument Parameter [Python] Default Argument Values (0) | 2018.06.24 |
Argument Parameter [C++] Default Arguments (0) | 2018.06.24 |