Computer Science, asked by redson2003ak, 6 hours ago

Write the output of the following python expression print((4>5) and (2!=1) or (4<9))​

Answers

Answered by kanhakorgaonkar
1

Answer:

True

Explanation:

The statement prints True, a boolean output. This is because  4<9 is true & OR operator is used.

Similar questions