gpt4 book ai didi

python - 输出过程——将数据保存到文件中

转载 作者:行者123 更新时间:2023-11-30 22:35:12 25 4
gpt4 key购买 nike

简单地说,我正在 python 中测试此代码:

我的想法是在通过键盘输入值后将solut = one + Two保存在文件中,但现在我遇到了问题。没有消息错误,文件中没有写入任何内容。

Python 2.7

我已经更改并保存了代码,但失败了,而且我没有备份。我不记得我需要如何处理整数并转换为指针。

filex = open('test.txt', 'a+')
one = input("first number : \n -> ")
two = input("second number: \n -> ")
solut = one + two
for line in filex:
line = filex.writelines(solut)
filex.close()

最佳答案

试试这个:

one = int(input("first number : \n -> "))
two = int(input("second number: \n -> "))
solut = one + two
with open('test.txt', 'a+') as filex:
filex.writelines([str(solut)])

您可以使用 int() 函数将输入的字符串转换为整数。 Writelines() 接受字符串列表。

关于python - 输出过程——将数据保存到文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44643392/

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