Does it allow Python to compare if else condition multiple value at once?
take an example
(A, B, C) < (X, Y, Z) ==> A < X, B < Y, C < Z
I want to make the following code:
if (195,161,85) < (210, 50, 55):
print("true")
else:
print("false")
the output i expect is "false" because 161 > 50 and 85 > 55. Can this be done in python?