《Python编程:从入门到实践》读书笔记——第7章:用户输入和while循环

回眸只為那壹抹淺笑 提交于 2019-12-29 21:38:41

函数input()的工作原理

函数input()让程序暂停运行,等待用户输入一些文本。python将获取的输入存储在一个变量中,方便之后使用。

**parrot.py**
message=input('Tell me something, and I will repeat it back to you: ')
print(message)

函数input()接受一个参数:即要向用户显示的提示或说明,让用户指导该怎么做。程序将等待用户输入,并在用户按回车键之后继续运行。

编写清晰的程序

在使用input()函数时,首先要保证使用的提示要清晰,易于理解;其次,要在提示的末尾包含一个空格,将提示与用户输入分开;再次,当提示内容超过一行时,可以将提示存在一个变量中,再将该变量传给input()。

**greeter.py**
prompt='If you tell us who you are, we can personalize the message you see.'
prompt+='\nWhat is your first name? '

name=input(prompt)
print('\nHello, '+name.title()+'!')

If you tell us who you are, we can personalize the message you see.
What is your first name? eric

Hello, Eric!

在上述示例中的第二行,运算符+=在存储prompt中的字符串末尾附加一个字符串。
最终得到的提示跨两行,并在问号后面包括两行。

使用int()来获取数值输入

使用函数input()时,Python将用户输入解读为字符串。此时,要想将输入的数值进行计算和比较,需要在这之前使用函数int()将其转换成数值表示。

**rollercoaster.py**
height=input('How tall are you, in inches? ')
height=int(height)

if height >= 36:
    print("\nYou're tall enough to ride!")
else:
    print("\nYou'll be able to ride when you're a little older.")

How tall are you, in inches? 71

You're tall enough to ride!

求模运算符%

求模运算符%,将两个数相除并返回余数。

>>>4%2
0
>>>3%2
1

可以通过一个数与2相除的余数,来判断该整数是偶数还是奇数。

while循环

while循环不断运行,直到指定的条件不满足为止。

**counting.py**
current_number=1
while current_number <= 5:
    print(current_number)
    current_number+=1

1
2
3
4
5

让用户选择何时退出

定义一个退出值,只要用户不输入这个值,while循环就一直进行。

**parrot.py**
prompt="\nTell me something, and I will repeat it back to you:"
prompt+="\nEnter 'quit' to end the program. "

message=""
while message != 'quit':
    message = input(prompt)

    if message != 'quit':
        print(message)

Tell me something, and I will repeat it back to you:
Enter 'quit' to end the program. Hello everyone!
Hello everyone!

Tell me something, and I will repeat it back to you:
Enter 'quit' to end the program. Hello again.
Hello again.

Tell me something, and I will repeat it back to you:
Enter 'quit' to end the program. quit

使用标志

标志是一个变量,用于判断整个程序是否处于活动状态。可以让程序在标志为True时继续运行,当标志值为False时,停止运行。

prompt='\nTell me something, and I will repeat it back to you!'
prompt+="\nEnter 'quit' to end the program. "

active=True
while active:
    message=input(prompt)
    if message == 'quit':
        active = False
    else:
        print(message)

上例中的变量active即为标志。

使用break退出循环

使用break语句可以立即退出循环,不再运行循环中余下的代码,也不管条件测试的结果如何。
在python的任何循环中都可以使用break语句。

**cities.py**
prompt="\nPlease enter the name of a city you have visited:"
prompt+="\n(Enter 'quit' when you are finished.) "

while True:
    city = input(prompt)
    if city == 'quit'
        break
    else:
        print("I'd love to go to "+city.title()+'!')

以while True打头的循环将不断运行,直到遇到break语句。

在循环中使用continue

使用continue语句,将返回循环开头,并根据条件测试结果决定是否继续执行循环。

**counting.py**
current_number=0
while current_number < 10:
    current_number += 1
    if current_number % 2 == 0:
        continue
    print(current_number)

1
3
5
7
9

以上示例在current_number能整除2时将忽略余下的代码,直接返回循环开头。

避免无限循环

每个while循环都必须有停止运行的途径,这样才不会没完没了的执行下去。

x = 1
while x <= 5:
    print(x)

1
1
1
1
--snip--

如上例,在代码中遗漏了x+=1,因此x始终等于1,条件测试始终为True,导致循环不断执行。
如果程序陷入无限循环,可按Ctrl+C来关闭程序输出的终端窗口。

使用while循环来处理列表和字典

for循环是一种遍历列表的有效方式,但在for循环中不应该修改列表,否则将导致python难以跟踪列表中的元素。要在遍历列表的同时对其进行修改,可使用while循环。通过将while循环与字典和列表结合使用,可收集、存储并组织大量输入,供以后查看和显示。

在列表之间移动元素

使用while循环可以在列表之间移动元素。

**confirmed_users.py**
unconfirmed_users=['alice','brain','candace']
confirmed_users=[]

while unconfirmed_users:
    current_user=unconfirmed_user.pop()
    print('Verifying user: '+current_user.title())
    confirmed_users.append(current_user)

print('\nThe following users have been confirmed:')
for confirmed_user in confirmed_users:
    print(confirmed_user.title())

在上例中,while循环将不断运行,直到unconfirmed_users为空。最终,unconfirmed_users列表中的所有元素被删除,并且全部存储到列表confirmed_users列表中。

删除包含特定值的所有列表元素

使用while循环可以删掉列表中所有包含特定值的元素。

**pets.py**
pets=['dog','cat','dog','goldfish','cat','rabbit','cat']
print(pets)

while 'cat' in pets:
    pets.remove('cat')

print(pets)

['dog','cat','dog','goldfish','cat','rabbit','cat']
['dog','dog','goldfish','rabbit']

使用用户收入来填充字典

可使用while循环提示用户输入任意数量的信息。

**mountain_poll.py**
responses={}
#设置一个标志,指出调查是否继续
polling_active=True
while polling_active:
    #提示输入被调查者的名字和回答
    name=input("\nWhat is your name? ")
    response=input("Which mountain would you like to climb someday? ")
    #将答案存储在字典中
    responses[name]=response
    #看看是否还有人要参与调查
    repeat=input("Would you like to let another person respond?(yea/no) ")
    if repeat == 'no':
        polling_active=False
#调查结束,显示结果
print('\n--- Poll Results ---')
for name,response in responses.items():
    print(name+' would like to climb '+response+'.')
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!