# 1. 정수를 진수로 인식하게 하는법
진수표현은 정수앞에 아래 문자를 붙이면 된다.
2진수 : '0b'
8진수 : '0o'
16진수 : '0x'
>>> print(0b10, 0o10, 0x10);
2 8 16
# 2. 정수를 2, 8, 18진수 반환 (문자열)
>>> bin(2)
'0b10'
>>> oct(8)
'0o10'
>>> hex(16)
'0x10'
2진수, 8진수, 16진수
|
2017.02.18 21:47:32
|
2017.02.18 21:53:10
|
328
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2019.08.21
2019.08.21
2017.03.18
2017.03.01
2017.02.18
2017.02.18
2017.02.18
2016.07.28