Post

@PythonPr A. The AND expression is False, but since the right side of OR is True, the output is True.
English

@PythonPr Answer: A) True
The and has higher precedence than the or
read as: (a and b) or c
True and False = False
False or True = True
For beginners: and before or is just like * before +.
English

@PythonPr a and b : True and False = False
or c : False or True = True
output : True
English




















