내장함수 - bin(x)

2015. 7. 16. 10:37IT관련

반응형

https://docs.python.org/2/library/functions.html?highlight=map#bin


bin(x)

상수를 2진수로 표현함. 정수는 지원하지 않음.



>>> bin(1)

'0b1'

>>> bin(10)

'0b1010'

>>> bin(-1)

'-0b1'

>>> bin(-10)

'-0b1010'

>>> bin(1.2)

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

TypeError: 'float' object cannot be interpreted as an index



반응형

'IT관련' 카테고리의 다른 글

내장함수 - bytearray([source[, encoding[, errors]]])  (0) 2015.07.16
내장함수 - bool([x])  (0) 2015.07.16
내장함수 - basestring()  (0) 2015.07.16
내장함수 - any(iterable)  (0) 2015.07.16
내장함수 - all(iterable)  (0) 2015.07.16