Args and Kwargs - Intermediate Python Programming p.25

Channel:
Subscribers:
1,410,000
Published on ● Video Link: https://www.youtube.com/watch?v=gZB_ENJD34E



Duration: 11:58
58,494 views
1,466


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
https://twitter.com/sentdex
https://www.facebook.com/pythonprogramming.net/
https://plus.google.com/+sentdex







Tags:
args
kwargs
*args
**kwargs
python
python 3
tutorial
intermediate
introduction
programming
Object Oriented Programming
Class
OOP