You are viewing a single comment's thread. Return to all comments →
def print_formatted(number): width = len(bin(n).replace("0b", "")) for num in range(1, n+1): print(f"{num:>{width}} " f"{oct(num).replace("0o", ""):>{width}} " f"{hex(num).replace("0x", "").upper():>{width}} " f"{bin(num).replace("0b", ""):>{width}}") if __name__ == '__main__': n = int(input()) print_formatted(n)
Seems like cookies are disabled on this browser, please enable them to open this website
String Formatting
You are viewing a single comment's thread. Return to all comments →