Advertisements
Advertisements
प्रश्न
Observe the following program carefully, and identify the error:
mynum = 9
def add9():
mynum = mynum + 9
print mynum
add9() #function call
टीपा लिहा
उत्तर
There are two errors in the given program.
- In line 1, ‘mynum’ variable is defined which is a global variable. However, in line 3, a variable with the same name is defined again. Therefore, 'mynum' is treated as a new local variable. As no value has been assigned to it before the operation, hence, it will give an error. The local variable can either be changed to a different name or a value should be assigned to the local 'mynum' variable before line 3.
- The syntax of the ‘print’ function is incorrect. The correct syntax will be ‘print(mynum)’.
shaalaa.com
Scope of a Variable
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Using an example showing how a function in Python can return multiple values.
Differentiate between the following with the help of an example:
Global and Local variable
State True or False.
“Variable declaration is implicit in Python.”
"Identifiers are names used to identify a variable or function in a program".
Consider the code given below:
b=100
def test(a):
______________ # missing statement
b=b+a
print (a,b)
test (10)
print (b)
Which of the following statements should be given in the blank for #Missing Statement, if the output produced is 110?