Name

int

Examples
a = 23     # Declare variable 'a' and assign it the value 23
b = -256   # Declare variable 'b' and assign it the value -256
c = a + b  # Declare variable 'c' and assign it the sum of 'a' and 'b'
Description Datatype for integers, numbers without a decimal point. Integers can be as large as 9,223,372,036,854,775,807 and as low as -9,223,372,036,854,775,808. They are stored as 32 bits of information.
Syntax
var = value
Parameters
varvariable name referencing the value
valueany integer value
Related float

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.