Q. What will be the output of the following Python code?
Code:x=13
if x>12 or x<15 and x==16:
print("Given condition matched")
else:
print("Given condition did not match")
β
Correct Answer: (A)
Given condition matched