Computer Science

A function in Python is used by invoking it via a function call.

Python Functions

1 Like

Answer

True

Reason — In Python, a function is used by invoking it through a function call. This involves using the function's name followed by parentheses (), which may contain arguments if the function requires any. The function call executes the code inside the function's body and then returns to the point in the code where the function was called from.

Answered By

3 Likes


Related Questions