Python简单实例之———⽤户简单信息调查问卷
要求:编写⼀个程序,调查⽤户梦想的度假胜地。使⽤类似于“If you could visit one place in the world, where would you go?”的提⽰,将收集的数据存储在⼀个字典中,并编写⼀个打印调查结果的代码块。
places ={}#创建⼀个空字典
python新手代码你好flag = True #设置⼀个标志,使得while循环继续
while flag:
name = input("\nwhat's your name? ")#要求⽤户输⼊姓名
place = input("if you could visit one place in the world, where would you go. ")#要求⽤户输⼊想去的地⽅
places[name]= place #将⽤户名及其对应的地名存储在字典places{}中
repeat = input("Would you like to let another person respond? (yes/ no) ")#询问是否继续接受调查
if repeat =='no':#如果⽤户输⼊no
flag = False #则while循环终⽌,程序退出
print("\n--- Poll Results ---")#打印存储的数据
for name, place in places.items(): #for循环遍历整个字典
print(name.title() + " would like to go " + place.title() + ".")
程序运⾏结果如下所⽰:
后记:本例中涉及的主要知识点包括【字典】、【while循环】、【for循环】、【标志符号】、【input
函数】等。在代码运⾏中遇到任何问题欢迎留⾔,共同探讨,⼀起进步。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论