python编写一个程序将输入的内容保存到txt文件中,用到while循环。每次输入的内容都要占一行。这个怎么写

2024-12-05 01:41:01
推荐回答(1个)
回答1:

with open('1.txt', 'a+') as f:
    print('Input is starting, press q to quit.')
    loop = True
    while loop:
        input_string = input('please input something')
        if input_string != 'q':
            f.write(input_string + '\n')
        else:
            loop = False