Alphanumeric natural base set

From XionKB
Revision as of 06:24, 25 February 2023 by Alexander (talk | contribs) (Created page with "The '''alphanumeric natural base set''' is a set of numeral bases that use the digits 0 through 9 and the letters A through Z, case insensitively, representing bases 2 through 36. Many programming language standard libraries, such as that of Python<ref>Python documentation of the <code>int( )</code> builtin: https://docs.python.org/3/library/functions.html#int</ref>, have parsers supporting an arbitrary number base in this range. This is likely because such a generalised...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

The alphanumeric natural base set is a set of numeral bases that use the digits 0 through 9 and the letters A through Z, case insensitively, representing bases 2 through 36. Many programming language standard libraries, such as that of Python[1], have parsers supporting an arbitrary number base in this range. This is likely because such a generalised function supports the parsing of binary, octal, decimal, and hexadecimal notations all within a single logic base, prefixes aside.

Numeral bases
Binary 2 | Octal 8 | Decimal 10 | Hexadecimal 16 | Dwarf thornal 24 | Thornal 32 | Base 64 64
Additional concepts
Alphanumeric natural base set

References

  1. Python documentation of the int( ) builtin: https://docs.python.org/3/library/functions.html#int