Computer Science
Find out the error(s) in following code fragment:
X = 24
4 = X
Python Funda
15 Likes
Answer
The statement
4 = X
is incorrect as 4 cannot be a Lvalue. It is a Rvalue.Answered By
6 Likes
Related Questions
Find out the error(s) in following code fragment:
a = 30 b=a+b print (a And b)
Find out the error(s) in following code fragment:
a, b, c = 2, 8, 9 print (a, b, c) c, b, a = a, b, c print (a ; b ; c)
Find out the error(s) in following code fragment:
print("X ="X)
Find out the error(s) in following code fragment:
else = 21 - 5