본문 바로가기
Python/Python FAQ

Python 2진수 이진수 문자열을 int로 변환하세요., Convert base-2 binary number string to int

by 베타코드 2023. 10. 25.
반응형

질문


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

여기에는 Python 2Python 3에 대한 문서가 있습니다.

반응형

댓글