gpt4 book ai didi

python - 将 "for loop"结果写入txt文件

转载 作者:行者123 更新时间:2023-11-30 22:33:09 26 4
gpt4 key购买 nike

脚本运行正常,但仅在 .txt 文件中记录最后的结果。我做错了什么?

a= float(input('Insert a: '))
b= float(input('Insert b: '))

for c in range(10,300):
d= float(46+(9*a)-(7*c))
e= float(-6+(463*b)+(-1*c)+(0.8*a)+(0.89*d))
print(d)
print(e)


import sys
sys.stdout=open("loop.txt","w")
print(d)
print(e)
sys.stdout.close()

最佳答案

您可以将这些值写入循环本身

a= float(input('Insert a: '))
b= float(input('Insert b: '))

with open("loop.txt","w") as f_out:
for c in range(10,300):
d= float(46+(9*a)-(7*c))
e= float(-6+(463*b)+(-1*c)+(0.8*a)+(0.89*d))
f_out.write('{} {}\n'.format(d, e))

关于python - 将 "for loop"结果写入txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45239668/

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