Contents:
[docs]def binary(n: int) -> str: return f'#b{n:b}' [docs]def hexadecimal(n: int) -> str: return f'#h{n:x}'