Computer Science

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

Python Functions

2 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

1 Like


Related Questions