Q. What will be the output of the following Python code?
Code:
x,y = 12,14
if(x+y==26):
print("true")
else:
print("false")
β
Correct Answer: (A)
true
x,y = 12,14
if(x+y==26):
print("true")
else:
print("false")
You must be Logged in to update hint/solution