■ int 클래스에서 생성자 함수의 base 인자를 사용해 10진수 정수를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
binaryValue = bin(5) targetValue1 = int(binaryValue, base = 2) print(targetValue1) # 5 octalValue = oct(7) targetValue2 = int(octalValue, base = 8) print(targetValue2) # 7 sourceString = "12345" targetValue3 = int(sourceString, base = 10) print(targetValue3) # 12345 hexadecimalValue = hex(255) targetValue4 = int(hexadecimalValue, base = 16) print(targetValue4) # 255 |