Computer Science
The first line of function definition that begins with keyword def and ends with a colon (:), is also known as function header.
Related Questions
Non-default arguments can be placed before or after a default argument in a function definition.
A parameter having default value in the function header is known as a default parameter.
Variables that are listed within the parentheses of a function header are called function variables.
In Python, the program execution begins with first statement of __main__ segment.