組み込み関数bin()を使用するプログラムを作成しましたが、この関数はPythonバージョン2.6の新機能であり、Pythonバージョン2.4および2.5でもこのアプリケーションを実行したいと思います。
2.4のbin()のバックポートはありますか?
あなたはこのバージョンを試すことができます(クレジットは元の作者に行きます):
def bin(x):
"""
bin(number) -> string
Stringifies an int or long in base 2.
"""
if x < 0:
return '-' + bin(-x)
out = []
if x == 0:
out.append('0')
while x > 0:
out.append('01'[x & 1])
x >>= 1
pass
try:
return '0b' + ''.join(reversed(out))
except NameError, ne2:
out.reverse()
return '0b' + ''.join(out)