Python bin ()
#Return the binary version of 36:
x = bin(36)
Easy Elephant
#Return the binary version of 36:
x = bin(36)
Help on built-in function bin in module __builtin__:
bin(...)
bin(number) -> string
Return the binary representation of an integer or long integer.