1 Crore+ students have signed up on EduRev. Have you? Download the App |
To call a function of a module, the function name should be preceded with the name of the module with a _______.
Function can be defined as a named group of instructions that are executed when the function is invoked or called by its name.
In programming, functions are used to achieve modularity and reusability.
The Python interpreter has a number of functions built into it. These are the functions that are frequently used in a Python program. Such functions are known as _________.
An __________ is a value passed to the function during a function call which is received in a parameter defined in the function header.
A function returns value(s) to the calling function using ________.
A variable that is defined outside any particular function or block is known as a ___________. It can be accessed anywhere in the program.
A variable that is defined inside any function or block is known as a __________. It can be accessed only in the function or block where it is defined. It exists only till the function executes or remains active.
The part of the program where a variable is accessible is defined as the _________.