CBSE Class 11 Computer Science Question 66 of 106

Python Fundamentals — Question 15

Back to all questions
15
Question

Question 15

What do you understand by undefined variable in Python ?

Answer

In Python, a variable is not created until some value is assigned to it. A variable is created when a value is assigned to it for the first time. If we try to use a variable before assigning a value to it then it will result in an undefined variable. For example:

print(x)   #This statement will cause an error for undefined variable x
x = 20
print(x)

The first line of the above code snippet will cause an undefined variable error as we are trying to use x before assigning a value to it.