In python ___________ should be in the same order as that of the arguments.
A __________ is a value that is pre decided and assigned to the parameter when the function call does not have its corresponding argument.
1 Crore+ students have signed up on EduRev. Have you? Download the App |
In python,________ statement returns the values from the function.
The translator executes the code one by one is known as __________.
The Python interpreter starts executing the instructions in a program from the _________.
A variable defined inside a function cannot be accessed ________ it.
In Python, a variable that is defined outside any function or any block is known as a ________.
A variable that is defined inside any function or a block is known as a __________.
Any change made to the global variable will impact ___________ in the program where that variable can be accessed.
If a variable with the same name as the global variable is defined inside a function, then it is considered _________ to that function.
For a complex problem, it may not be feasible to manage the code in one single file. Then, the program is divided into different parts under different levels, called ________.
Any modification to a global variable is permanent and affects _________ where it is used.