Args and Kwargs - Intermediate Python Programming p.25

Welcome to part 25 of the intermediate Python programming tutorial series. In this tutorial, we're going to cover *args and **kwargs. The idea behind *args and **kwargs is that there may be times when you have a function and you want to be able to handle an unknown number of arguments. The *args will handle for any number of parameters, and **kwargs will handle for any number of keyword arguments (hence kwargs). https://pythonprogramming.net   / sentdex     / pythonprogramming.net   https://plus.google.com/+sentdex