gpt4 book ai didi

python - 如何在一个文件的一行中输出 3 个项目?

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

我想制作一个程序,允许用户连续输入一组三项,每个输入提示一个,然后将这三个值输出到文本文件中的一行。

这是一些基本的例子

text_file = open("filename", "w")

While True:
Code = input("Enter code")
Description = input("Enter description")
Price = input("Enter price")

谁能帮帮我?

编辑:这就是我到目前为止的情况。

text_file = open("file.txt", "w")

while True:
user_input = input("Enter a code, description and price")
split = user_input.split(" ")
split = str(split)
text_file.write(split)

唯一的问题是它不让我输出列表。

最佳答案

sep = ','   # separator character
textfile.write(sep.join([Code, Description, Price]) + '\n')

关于python - 如何在一个文件的一行中输出 3 个项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45022797/

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