《Python:编程:从入门到实践》学习笔记_第7章 字典用户输入和while循环

第一章 用户输入和while循环


7.1 函数 input()的工作原理

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

message = input("Tell me something, and I will repeat it back to you: ") 
print(message) 

函数input() 接受一个参数:即要向用户显示的提示或说明,让用户知道该如何做。在这个示例中,Python运行第1行代码时,用户将看到提示Tell me something, and I will repeat it back to you:。程序等待用户输入,并在用户按回车键后继续运行。输入存储在变量message中,接下来的print(message)将输入呈现给用户:

Tell me something, and I will repeat it back to you: Hello everyone! 
Hello everyone! 

7.1.1 编写清晰的程序

每当你使用函数input()时,都应指定清晰而易于明白的提示,准确地指出你希望用户提供什么样的信息——指出用户该输入任何信息的提示都行。

name = input("Please enter your name: ") 
print("Hello, " + name + "!") 

通过在提示末尾(这里是冒号后面)包含一个空格,可将提示与用户输入分开,让用户清楚地知道其输入始于何处,如下所示:

Please enter your name: Eric 
Hello, Eric!

有时候,提示可能超过一行,例如,你可能需要指出获取特定输入的原因。在这种情况下,可将提示存储在一个变量中,再将该变量传递给函数input()。这样,即便提示超过一行,input()语句也非常清晰。

prompt = "If you tell us who you are, we can personalize the messages you see." 
prompt += "\nWhat is your first name? " 

name = input(prompt) 
print("\nHello, " + name + "!")

有时候,提示可能超过一行,例如,你可能需要指出获取特定输入的原因。在这种情况下,可将提示存储在一个变量中,再将该变量传递给函数input()。这样,即便提示超过一行,input()语句也非常清晰。

prompt = "If you tell us who you are, we can personalize the messages you see." 
prompt += "\nWhat is your first name? " 

name = input(prompt) 
print("\nHello, " + name + "!")

最终的提示横跨两行,并在问号后面包含一个空格,这也是出于清晰考虑:

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

Hello, Eric!

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

使用函数input()时,Python将用户输入解读为字符串。

>>> age = input("How old are you? ") 
How old are you? 21 
>>> age 
'21' 

如果我们只想打印输入,这一点问题都没有;但如果你试图将输入作为数字使用,就会引发错误:

>>> age = input("How old are you? ") 
How old are you? 21 
>>> age >= 18 
Traceback (most recent call last): 
  File "<stdin>", line 1, in <module> 
TypeError: unorderable types: str() >= int()

为解决这个问题,可使用函数int(),它让Python将输入视为数值。函数int()将数字的字符串表示转换为数值表示,如下所示:

>>> age = input("How old are you? ") 
How old are you? 21 
>>> age = int(age) 
>>> age >= 18 
True

如何在实际程序中使用函数int()呢?请看下面的程序,它判断一个人是否满足坐过山车的身高要求:

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.")

如果输入的数字大于或等于36,我们就告诉用户他满足身高条件:

How tall are you, in inches? 71 

You're tall enough to ride!

7.1.3 求模运算符

处理数值信息时,求模运算符(%) 是一个很有用的工具,它将两个数相除并返回余数:

>>> 4 % 3 
1 
>>> 5 % 3 
2 
>>> 6 % 3 
0 
>>> 7 % 3 
1

你可利用这一点来判断一个数是奇数还是偶数:

number = input("Enter a number, and I'll tell you if it's even or odd: ") 
number = int(number) 

if number % 2 == 0: 
	print("\nThe number " + str(number) + " is even.") 
else: 
	print("\nThe number " + str(number) + " is odd.") 

偶数都能被2整除,因此对一个数(number)和2执行求模运算的结果为零,即number % 2 == 0,那么这个数就是偶数;否则就是奇数。

Enter a number, and I'll tell you if it's even or odd: 42 

The number 42 is even. 

7.1.4 在 Python 2.7 中获取输入

如果你使用的是Python 2.7,应使用函数raw_input() 来提示用户输入。这个函数与Python 3中的input()一样,也将输入解读为字符串。

Python 2.7也包含函数input(),但它将用户输入解读为Python代码,并尝试运行它们。因此,最好的结果是出现错误,指出Python不明白输入的代码;而最糟的结果是,将运行你原本无意运行的代码。如果你使用的是Python 2.7,请使用raw_input()而不是input()来获取输入。


7.2 while 循环简介

for循环用于针对集合中的每个元素都一个代码块,而while循环不断地运行,直到指定的条件不满足为止。

7.2.1 使用 while 循环

你可以使用while循环来数数。

current_number = 1 
while current_number <= 5: 
	print(current_number) 
	current_number += 1 

7.2.2 让用户选择何时退出

可使用while循环让程序在用户愿意时不断地运行。

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) 
	print(message) 

只要用户输入的不是单词’quit’,Python就会再次显示提示消息并等待用户输入。等到用户终于输入’quit’后,Python停止执行while循环,而整个程序也到此结束:

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 
quit

这个程序很好,唯一美中不足的是,它将单词’quit’也作为一条消息打印了出来。为修复这种问题,只需使用一个简单的if测试:

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 

7.2.3 使用标志

在要求很多条件都满足才继续运行的程序中,可定义一个变量,用于判断整个程序是否处于活动状态。这个变量被称为标志,充当了程序的交通信号灯。你可让程序在标志为True时继续运行,并在任何事件导致标志的值为False时让程序停止运行。这样,在while语句中就只需检查一个条件——标志的当前值是否为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) 

7.2.4 使用 break 退出循环

要立即退出while循环,不再运行循环中余下的代码,也不管条件测试的结果如何,可使用break语句。break语句用于控制程序流程,可使用它来控制哪些代码行将执行,哪些代码行不执行,从而让程序按你的要求执行你要执行的代码。

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() + "!") 

直到他输入’quit’为止。用户输入’quit’后,将执行break语句,导致Python退出循环:

Please enter the name of a city you have visited: 
(Enter 'quit' when you are finished.) New York 
I'd love to go to New York! 

Please enter the name of a city you have visited: 
(Enter 'quit' when you are finished.) San Francisco 
I'd love to go to San Francisco! 

Please enter the name of a city you have visited: 
(Enter 'quit' when you are finished.) quit

注:在任何Python循环中都可使用break语句。例如,可使用break语句来退出遍历列表或字典的for循环。

7.2.5 在循环中使用 continue

要返回到循环开头,并根据条件测试结果决定是否继续执行循环,可使用continue语句,它不像break语句那样不再执行余下的代码并退出整个循环。

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

如果当前的数字不能被2整除,就执行循环中余下的代码,Python将这个数字打印出来:

1 
3 
5 
7 
9 

7.2.6 避免无限循环

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

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

但如果你像下面这样不小心遗漏了代码行x += 1,这个循环将没完没了地运行:

# 这个循环将没完没了地运行!
x = 1 
while x <= 5: 
	print(x) 

在这里,x的初始值为1,但根本不会变,因此条件测试x <= 5始终为True,导致while循环没完没了地打印1,如下所示:

1 
1 
1 
1 
--snip--

要避免编写无限循环,务必对每个while循环进行测试,确保它按预期那样结束。如果你希望程序在用户输入特定值时结束,可运行程序并输入这样的值;如果在这种情况下程序没有结束,请检查程序处理这个值的方式,确认程序至少有一个这样的地方能让循环条件为False或让break语句得以执行。

注:有些编辑器(如Sublime Text)内嵌了输出窗口,这可能导致难以结束无限循环,因此不得不关闭编辑器来结束无限循环。


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

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

7.3.1 在列表之间移动元素

# 首先,创建一个待验证用户列表
# 和一个用于存储已验证用户的空列表
unconfirmed_users = ['alice', 'brian', 'candace'] 
confirmed_users = [] 

# 验证每个用户,直到没有未验证用户为止
# 将每个经过验证的列表都移到已验证用户列表中
while unconfirmed_users: 
	current_user = unconfirmed_users.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())

为模拟用户验证过程,我们打印一条验证消息并将用户加入到已验证用户列表中。未验证用户列表越来越短,而已验证用户列表越来越长。未验证用户列表为空后结束循环,再打印已验证用户列表:

Verifying user: Candace 
Verifying user: Brian 
Verifying user: Alice 
The following users have been confirmed: 
Candace 
Brian 
Alice

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

如果要删除列表中所有包含特定值的元素,该怎么办呢?

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

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

它不断删除’cat’,直到这个值不再包含在列表中,然后退出循环并再次打印列表:

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

7.3.3 使用用户输入来填充字典

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

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? (yes/ no) ") 
 	if repeat == 'no': 
 		polling_active = False 
 
# 调查结束,显示结果
print("\n--- Poll Results ---") 
for name, response in responses.items(): 
 	print(name + " would like to climb " + response + ".")

如果你运行这个程序,并输入一些名字和回答,输出将类似于下面这样:

What is your name? Eric 
Which mountain would you like to climb someday? Denali 
Would you like to let another person respond? (yes/ no) yes 
 
What is your name? Lynn 
Which mountain would you like to climb someday? Devil's Thumb 
Would you like to let another person respond? (yes/ no) no 

--- Poll Results --- 
Lynn would like to climb Devil's Thumb. 
Eric would like to climb Denali.

7.4 小结

在本章中,你学习了:如何在程序中使用input()来让用户提供信息;如何处理文本和数字输入,以及如何使用while循环让程序按用户的要求不断地运行;多种控制while循环流程的方式:设置活动标志、使用break语句以及使用continue语句;如何使用while循环在列表之间移动元素,以及如何从列表中删除所有包含特定值的元素;如何结合使用while循环和字典。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值