def print_map(**dicts):
for item in dicts.items():
print(item)
print_map(하나=1)
print_map(one=1, two=2)
print_map(하나=1, 둘=2, 셋=3)