How to declare ARBITRARY arguments in Python functions

Опубликовано: 27 Август 2021
на канале: Computer Science Camp
105
4

LINKS TO FULL CONTENT
Full lesson: https://computersciencecamp.com/cours...
Full course: https://computersciencecamp.com/cours...

FULL LESSON DESCRIPTION
In this lesson I’ll introduce three new syntactic features related with function definitions and invocations that provide additional flexibility when dealing with argument passing. These features are called ‘default arguments’, ‘keyword arguments’, and ‘arbitrary arguments’.

FULL LESSON CONTENT
Part 1. Default arguments
Part 2. Keyword arguments
Part 3. Arbitrary arguments
Part 4. Problem: Printing arbitrary arguments