print(format(95, "5d"))
print(format(4, "b")) # prints the binary equivalent of decimal 4
print(format(255, "x")) # prints the hexadecimal equivalent of decimal 255
print(format(9, "o")) # prints the octal equivalent of decimal 9
print(format(100, "<10d")) # Left align the number within specified width