Answers for "python format to print dec oct hex and bin"

1

python format to print dec oct hex and bin

n = int(input())
w = len("{0:b}".format(n))
for i in range (1, n+1):
  print("{0:{width}d}{0:{width}o}{0:{width}X}{0:{width}b}".format(i, width=w))
Posted by: Guest on April-29-2022

Python Answers by Framework

Browse Popular Code Answers by Language