# https://www.globalsino.com/ICs/page4853.html # Separate digits of numbers or separate the binary, octal or hex parts of numbers million = 2_000_000 binary = 0b_1110 octa = 0o_74 hexa = 0x_47_ab print(million) print(binary) print(octa) print(hexa)