Answer by dblaze for Convert int to binary string in Python
n=input()print(bin(n).replace("0b", ""))
View ArticleAnswer by Reza Abtin for Convert int to binary string in Python
Yet another solution with another algorithm, by using bitwise operators. def int2bin(val): res='' while val>0: res += str(val&1) val=val>>1 # val=val/2 return res[::-1] # reverse the...
View ArticleAnswer by mukundan for Convert int to binary string in Python
def binary(decimal) : otherBase = "" while decimal != 0 : otherBase = str(decimal % 2) + otherBase decimal //= 2 return otherBaseprint binary(10)output:1010
View ArticleAnswer by user210021 for Convert int to binary string in Python
here is simple solution using the divmod() fucntion which returns the reminder and the result of a division without the fraction.def dectobin(number): bin = '' while (number >= 1): number, rem =...
View ArticleAnswer by Chandler for Convert int to binary string in Python
Somewhat similar solutiondef to_bin(dec): flag = True bin_str = '' while flag: remainder = dec % 2 quotient = dec / 2 if quotient == 0: flag = False bin_str += str(remainder) dec = quotient bin_str =...
View ArticleAnswer by Kyle Siopiolosz for Convert int to binary string in Python
Along a similar line to Yusuf Yazici's answerdef intToBin(n): if(n < 0): print "Sorry, invalid input." elif(n == 0): print n else: result = "" while(n != 0): result += str(n%2) n /= 2 print...
View ArticleAnswer by quents for Convert int to binary string in Python
Here is the code I've just implemented. This is not a method but you can use it as a ready-to-use function!def inttobinary(number): if number == 0: return str(0) result ="" while (number != 0):...
View ArticleAnswer by Martin Thoma for Convert int to binary string in Python
If you want a textual representation without the 0b-prefix, you could use this:get_bin = lambda x: format(x, 'b')print(get_bin(3))>>> '11'print(get_bin(-3))>>> '-11'When you want a...
View ArticleAnswer by kctong529 for Convert int to binary string in Python
As a reference:def toBinary(n): return ''.join(str(1 & int(n) >> i) for i in range(64)[::-1])This function can convert a positive integer as large as 18446744073709551615, represented as...
View ArticleAnswer by paxdiablo for Convert int to binary string in Python
Python actually does have something already built in for this, the ability to do operations such as '{0:b}'.format(42), which will give you the bit pattern (in a string) for 42, or 101010.For a more...
View ArticleAnswer by John Fouhy for Convert int to binary string in Python
If you're looking for bin() as an equivalent to hex(), it was added in python 2.6.Example:>>> bin(10)'0b1010'
View ArticleAnswer by Tung Nguyen for Convert int to binary string in Python
Python's string format method can take a format spec. >>> "{0:b}".format(37)'100101'Format spec docs for Python 2Format spec docs for Python 3
View ArticleAnswer by Van Gale for Convert int to binary string in Python
Unless I'm misunderstanding what you mean by binary string I think the module you are looking for is struct
View ArticleConvert int to binary string in Python
How do I convert an integer into a binary string in Python?37 →'100101'
View Article