Integer Expressions

Integer Expressions are expressions that return a whole number.

Examples include:

Integer Expressions
10
ABS(-2345)
int(9.987)
5*8

Positive integer values may also be expressed in binary (base 2), octal (base 8), and hexadecimal (base 16). Precede binary values with 0b (0b1110 = 14), octal with 0o (0o177 = 127), and hexadecimal with 0x (0xff = 255).