标签:
1 def Int2Binary(n): 2 res="" 3 s=n/2 4 y=n%2 5 while(s>0): 6 res=str(y)+res 7 temp=s 8 s=temp/2 9 y=temp%2 10 res="1"+res 11 return res
Python整数转成二进制字符串
原文地址:http://www.cnblogs.com/acode/p/4557306.html