why is it that we use "greater than" or "equal", rather than "equal" or "greater than"?
foo = 1
if foo >= 1:
print("Greater than 1")
>>> Greater than 1
while the following would raise a SyntaxError:
foo = 1
if a => 1:
print("Greater than 1")
why does it make a difference in what order you use the comparison operators?