반응형
질문
I'd simply like to convert a base-2 binary number string into an int, something like this:
>>> '11111111'.fromBinaryToInt()
255
Is there a way to do this in Python?
답변
내장된 int()
함수를 사용하고 입력 숫자의 기본 값을 전달합니다. 즉, 이진수인 경우 2
를 사용합니다:
>>> int('11111111', 2)
255
반응형
댓글