gpt4 book ai didi

python - 输出到文本文件

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

如何将以下代码打印到.txt文件

y = '10.1.1.' # /24 network, 
for x in range(255):
x += 1
print y + str(x) # not happy that it's in string, but how to print it into a.txt

有复制粘贴,但更愿意尝试更有趣的东西。

最佳答案

f = open('myfile.txt', 'w')
for x in range(255):
ip = "10.1.1.%s\n" % str(x)
f.write(ip)
f.close()

关于python - 输出到文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/493816/

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