If a=50 and b=40, then find the output of the following python statement: print(a<b and b>a)
Answers
Answered by
0
Answer:
False
Explanation:
50 < 40 False
50 > 40 True
False and True is False
Similar questions