Computer Science
The first line of function definition that begins with keyword def
and ends with a colon (:), is also known as function header.
Python Functions
1 Like
Answer
True
Reason — The first line of function definition that begins with keyword def
and ends with a colon (:), which specifies the name of the function and its parameter is called function header.
Answered By
1 Like
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.