Python 3 Programming Tutorial - Function Parameter Defaults

In the last tutorial, we explained what function parameters were, and that we could have an infinite amount of them. With this, we explained how having a lot of them could become troublesome and tedious for the programmer using the function. Luckily, there is a solution for this. Sometimes, it can make a lot of sense to make a complex function highly customize-able. That said, some people may want to use the function in it’s simple... “default“ ... form. Think about it like buying a car. Some people want to
Back to Top