0
Why is the output of print (1 == 1) and (not (2 + 2 > 3)) coming as True?
Ideally 2+2 is greater than 3, hence true. If we put 'not' then that should be make true to false. First condition 1==1 is true. Between both is AND. True AND False should result in False.
3 ответов
0
where it is coming True?
0
Can't be true if there is an AND in between them
0
in the code playground it is coming as true (when using web browser in laptop)