Python/basics.py
2020-02-05 13:36:12 +00:00

4 lines
111 B
Python

def uppersort(*args):
return sorted([str.upper(arg) for arg in args])
print(uppersort('b', 'a', 'd', 'c'))