10진법 -> 2진법 bin()
bin()
10진법 -> 8진법 oct()
oct()
10진법 -> 16진법 hex()
hex()
n진법 -> 10진법
int() int(0b1101) #13 int(0o73) #59 int(0x7e) #126