gpt4 book ai didi

python - 如何用 Python 写入文件?

转载 作者:太空宇宙 更新时间:2023-11-04 05:40:14 25 4
gpt4 key购买 nike

如何将乐谱写入文件?

import random
score=0
question=0
for i in range(10):
num1= random.randint(1,10)
num2= random.randint(1,10)
ops = ['+', '-', '*']
operation = random.choice(ops)
Q = int(input(str(num1)+operation+str(num2)))

if operation =='+':
answer=num1+num2
if Q == answer:
print ("correct")
score=score+1

else:
print('You Fail')

elif operation =='-':
answer=num1-num2
if Q == answer:
print ("correct")
score=score+1
else:
print("you fail")

else:
answer=num1*num2
if Q == answer:
print ("correct")
score=score+1
else:
print("you fail")
print("thank you for playing your score is",score)

最佳答案

您可以手动打开和关闭文件,但最好使用 with,因为它会为您处理关闭文件。

with open("score_file.txt",'a') as f:
f.write(score)

'a' 表示追加到不会覆盖以前内容的文件 - 这可能是您要查找的内容。据我所知,您将要在 print 语句之后或之前添加它。如果你不懂读写文件,那么你应该看看this link .

关于python - 如何用 Python 写入文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34204523/

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