z = 3
y = 7
x = y == z and y > z or z > y and z != y
To break this down:
y == z is False since 7 is not equal to 3.
y > z is True since 7 is greater than 3.
z > y is False since 3 is less than 7.
z != y is True since z is not equal to/same as y.
x = False and True or False and True.
In Python, the and operator returns True only if both operands are True, and the or operator returns True if at least one operand is True.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
akumo
1 month agoOluwafemi_Akinlosotu
1 month ago