Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Relational Operator: Difference between revisions

From Groundhog Learning
Updated via bot
 
(No difference)

Latest revision as of 16:01, 21 October 2025

Symbols used to compare two values and return a true or false value.

Details

🤖 Pseudocode

a > b   # true if a is greater than b
a >= b  # true if a is greather than or equal to b
a < b   # true if a is less than b
a <= b  # true if a is less than or equal to b

Related Concepts

Related Actions

References