I came across a couple of questions asking me to predict the output of code that looks like this:
a=5
b=6
print ((a and b) or (a>b))
I am not quiet sure how to make sense out of that :( Here's another one. Could someone please help me out ?
a=4
b=6
c=10
print((a<=b) and print(c) ((c==a) and (not(c<b))))
Edit: got a couple of comments saying the syntax is wrong, hence i attached a picture of the original question...