Python/basics.py
2020-02-05 13:38:23 +00:00

4 lines
88 B
Python

def uppersort(**kwargs):
return kwargs
print(uppersort(a='b', b='a', c='d', d='c'))