Variable number of function arguments
- Python function arguments - a reminder
- Functions with unknown number of argumerns
- Variable length argument list with * and **
- Passing arguments as they were received (but incorrectly)
- Unpacking args before passing them on
- Exercise: implement the my_sum function
- Solution: implement the my_sum function
- Exercise: implement the reduce function
- Soluton: implement the reduce function
- Exercise: sort pairs
- Solution: sort pairs