1. 程式人生 > >python 生成隨機不重複的使用者id

python 生成隨機不重複的使用者id

資料庫裡面有時候需要不重複的id 來表示使用者id,就像QQ號碼一樣。

如果簡單用uuid來生成的話,生成64位,太長。

生成6到8位gid

def generate_gid():
    gids = []
    for number in range(100000, 10000000):
        gids.append(number)
    for gid in gids:
        index0 = random.randint(0, len(gids) - 1)
        index1 = len(gids) - 1
        tmp = gids[index0]
        gids[index0] = gids[index1]
        gids[index1] = tmp
    return gids.pop()
速度還是可以的。