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

From Groundhog Learning
Revision as of 16:01, 21 October 2025 by Groundhog (talk | contribs) (Updated via bot)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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