๐Ÿ”จ*args, **kwargs & Keyword-Only ParamsWORKSHOP
2
3
4
5

Step 1

Write a function `sum_all(*args)` that accepts any number of numeric arguments and returns their sum. It should return 0 when called with no arguments. Test it with several different call patterns.

Ctrl+Enter to run