Reference
Comparison
Equality
| Input | Two arguments of any type. |
| Output | True if they are equal. False otherwise. |
Inequality
| Input | Two arguments of any type. |
| Output | True if they are not equal. False otherwise. |
Greater than
| Input | Two numbers or two strings. |
| Output | True if the first argument is greater than the second one. False otherwise. |
Less than
| Input | Two numbers or two strings. |
| Output | True if the first argument is less than the second one. False otherwise. |
Greater than or equal
| Input | Two numbers or two strings. |
| Output | True if the first argument is greater than or equal to the second one. False otherwise. |
Less than or equal
| Input | Two numbers or two strings. |
| Output | True if the first argument is less than or equal to the second one. False otherwise. |