Python/basics.py
2020-02-05 13:39:49 +00:00

4 lines
91 B
Python

def find_sum(**kwargs):
return sum(kwargs.values())
print(find_sum(a=4, b=3, c=2))