Skip to content

Instantly share code, notes, and snippets.

@quantra-go-algo
Last active October 16, 2022 01:30
Show Gist options
  • Save quantra-go-algo/62f964df5954948ba4f0c88685ff2b4b to your computer and use it in GitHub Desktop.
Save quantra-go-algo/62f964df5954948ba4f0c88685ff2b4b to your computer and use it in GitHub Desktop.
# Let us assume a & b
a = 13
b = 33
# a > b is False
print("Is a greater than b?:" a > b)
# a < b is True
print("Is a smaller than b?:" a < b)
# a == b is False
print("Is a equal to b?:" a == b)
# a != b is True
print("Is a not equal to b?:" a != b)
# a >= b is False
print("Is a greater than or equal to b?:" a >= b)
# a <= b is True
print("Is a smaller than or equal to b?:" a <= b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment