赞
踩
要求:
编写一个while循环,提示用户输入其名字。用户输入名字后,将一条访问记录添加到guest.txt中。确保每条记录独占一行。
代码:
- filename = 'guest.txt'
-
- polling_active = True
- #设置一个循环位
- while polling_active:
- guest_name = input("please input your name: ")
- #输入姓名,如为"quit",则退出循环。
- with open(filename, 'a') as file_object:
- file_object.write(guest_name + '\n')
- if guest_name == 'quit':
- polling_active = False
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。