filename = 'guest_book.txt' name = ' ' while name != 'stop': name = input("请输入你的名字: (若要停止 请输入’stop) ") if name != 'stop': print("Hello! Nice to meet you " + name.title() + '!') with open(filename, 'a') as file_object: #若为'w' 则不会保存之前的数据 file_object.write(name + '\n')
结果
请输入你的名字: (若要停止 请输入’stop) li Hello! Nice to meet you Li! 请输入你的名字: (若要停止 请输入’stop) wang Hello! Nice to meet you Wang! 请输入你的名字: (若要停止 请输入’stop) zhang Hello! Nice to meet you Zhang ! 请输入你的名字: (若要停止 请输入’stop) stop Process finished with exit code 0