Python/basics.py

4 lines
88 B
Python
Raw Normal View History

2020-02-05 13:38:23 +00:00
def uppersort(**kwargs):
return kwargs
2020-02-04 14:01:05 +00:00
2020-02-05 13:38:23 +00:00
print(uppersort(a='b', b='a', c='d', d='c'))