Greater Than¶
Greater Than (>) can be used to find if a is greater than b.
Syntax
operand1 > operand2
Example
a > b
1 > 2
# false
4 > 2
# true