gpt4 book ai didi

python - 将多个字符写入文件,但只看到一个字符? - Python

转载 作者:行者123 更新时间:2023-12-01 23:37:56 25 4
gpt4 key购买 nike

我想写 1 和 0 之间的随机数,80 次。这应该将 010100001010100101001010100101010.... 写入一个 txt 文件(80 次),但我得到一个数字。为什么

from random import random

bro = int(input('Amount: '))

for i in range(bro):
open('e.txt', 'w').write(str(round(random())))

不工作?

最佳答案

您应该打开文件一次,然后写入打开的文件。您还可以使用 randint(0, 1) 代替 round(random()):

from random import randint

amnt = 80

with open('e.txt', 'w') as f:
for i in range(amnt):
f.write(str(randint(0, 1)))

关于python - 将多个字符写入文件,但只看到一个字符? - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65333025/

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