A
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")
if x>12 or x<15 and x==16:
print("Given condition matched")
else:
print("Given condition did not match")
- Correct Answer - Option(A)
- Views: 9
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.