2

組み込み関数bin()を使用するプログラムを作成しましたが、この関数はPythonバージョン2.6の新機能であり、Pythonバージョン2.4および2.5でもこのアプリケーションを実行したいと思います。

2.4のbin()のバックポートはありますか?

4

1 に答える 1

6

あなたはこのバージョンを試すことができます(クレジットは元の作者に行きます):

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)
于 2010-11-01T13:46:02.033 に答える