gpt4 book ai didi

python : Generate a string of bits

转载 作者:行者123 更新时间:2023-11-28 21:20:37 30 4
gpt4 key购买 nike

我正在尝试使用以下代码生成随机位串。

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)

但更多的 Pythonic 是这样的:

>>> from random import choice
>>> ''.join(choice('01') for _ in range(10))
'0011010100'

关于 python : Generate a string of bits,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22609509/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com