Computer Science

What all information does a function header give you about the function ?

Python Functions

11 Likes

Answer

Function header is the first line of function definition that begins with keyword def and ends with a colon (:), specifies the name of the function and its parameters.

Answered By

6 Likes


Related Questions