Skip to content

Instantly share code, notes, and snippets.

@River2056
Last active September 16, 2020 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save River2056/27b795a1937ba37831b2361b16012e79 to your computer and use it in GitHub Desktop.
Save River2056/27b795a1937ba37831b2361b16012e79 to your computer and use it in GitHub Desktop.
def print_some_names(**kwargs):
for key, val in kwargs.items():
print(f'{key}: {val}')
# 以下輸出:
# students: ['Jack', 'Leon', 'Claire']
# absent: Jill
# over_time: True
print_some_names(students=['Jack', 'Leon', 'Claire'], absent='Jill', over_time=True)
# 以下輸出:
# skills: ['Python', 'JavaScript', 'Java']
# user: Kevin
print_some_names(skills=['Python', 'JavaScript', 'Java'], user='Kevin')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment