-
-
Save quantra-go-algo/62f964df5954948ba4f0c88685ff2b4b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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