Number Systems#

Number systems of the world#

https://en.wikipedia.org/wiki/List_of_numeral_systems

Vanuatu / Tally marks#

Mayans#

Imperial#

Metric#

Computer-based number systems#

Binary#

0b1111

Octal#

6, 12 and 24 bit computers, divisible by 3

0o377

Hexadecimal#

0xff

Base64#

https://en.wikipedia.org/wiki/Base64

int?
Init signature: int(self, /, *args, **kwargs)
Docstring:     
int([x]) -> integer
int(x, base=10) -> integer

Convert a number or string to an integer, or return 0 if no arguments
are given.  If x is a number, return x.__int__().  For floating point
numbers, this truncates towards zero.

If x is not a number or if base is given, then x must be a string,
bytes, or bytearray instance representing an integer literal in the
given base.  The literal can be preceded by '+' or '-' and be surrounded
by whitespace.  The base defaults to 10.  Valid bases are 0 and 2-36.
Base 0 means to interpret the base from the string as an integer literal.
>>> int('0b100', base=0)
4
Type:           type
Subclasses:     bool, IntEnum, IntFlag, _NamedIntConstant
int('11111111', base=2)
255
bin(255)
'0b11111111'
oct(7)
'0o7'
int('377', base=8)
255