diff --git a/basics.py b/basics.py index 2cadd56..12379fc 100644 --- a/basics.py +++ b/basics.py @@ -1,4 +1,4 @@ -def uppersort(**kwargs): - return kwargs - -print(uppersort(a='b', b='a', c='d', d='c')) \ No newline at end of file +def find_sum(**kwargs): + return sum(kwargs.values()) + +print(find_sum(a=4, b=3, c=2)) \ No newline at end of file