我正在尝试使用以下代码生成一个随机的位字符串。

bitString = []

for i in range(0, 8):
    x = str(random.randint(0, 1))
    bitString.append(x)
    ''.join(bitString)

然而,与其给我这样的东西:
10011110

我得到的东西是这样的:
['1','0','0','1','1','1','1','0']

有人能告诉我我做错了什么吗?
谢谢!

最佳答案

固定代码:

bitList = []

for i in range(0, 8):
    x = str(random.randint(0, 1))
    bitList.append(x)

bitString = ''.join(bitList)

但更多的蟒蛇是这样的:
>>> from random import choice
>>> ''.join(choice('01') for _ in range(10))
'0011010100'

关于python - Python:生成一串位。,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22609509/

10-11 17:37