num = 255 print(bin(num), oct(num), hex(num))
'0b11111111' '0o377' '0xff'
'11111111' '377' 'ff'
'0b100000000' '0o400' '0x100'
'255' '255' '255'