编写一个python程序,程序不断接收用户的输入,用户每次输入按回车结束,程序将用户输入的内容保存在content.txt文件中,每次输入占用一行,当用户输入"end program"时结束程序。
时间: 2024-03-23 21:36:52 浏览: 42
使用python把输入的信息转为.txt文件
好的,以下是Python程序代码:
```python
while True:
user_input = input()
if user_input == "end program":
break
with open("content.txt", "a") as f:
f.write(user_input + "\n")
```
这个程序使用了一个 while 循环,不断接收用户的输入。当用户输入 "end program" 时,程序会跳出循环,结束程序。
每次用户输入后,程序使用 with open("content.txt", "a") as f: 打开 content.txt 文件,使用 "a" 参数表示以追加模式打开文件,这样就可以将用户的输入添加到文件的末尾了。然后程序使用 f.write(user_input + "\n") 将用户输入的内容写入文件中,每次输入占用一行。最后,程序会自动关闭文件。
阅读全文