第6章 用户输入和while循环

发布时间:2023年12月24日

6.1函数input( )的工作原理

函数input( ) 让程序暂停运行,等待用户输入一些文本。获取用户输入后,python将其赋给一个变量,以方便你使用。例如:

message = input("tell me something, and i will repeat it back to you")
print(message)

python运行第一行代码时,用户将看到提示tell me something, and i will repeat it back to you,程序等待用户输入,并在用户按回车键后继续运行,输入的内容被赋给变量message,接下来第二行代码负责打印变量。

6.1.1编写清晰的程序

每当使用函数input( ) 时,都应指定清晰易懂的提示,准确的指出希望用户提供什么样的信息—指出用户应该输入何种信息的任何提示都行,如下所示:

name = input("please enter your name: ")
print(f"\nHello,{name}")

有时候提示可能超过一行。在这种情况下,可将提示赋给一个变量,再将该变量传递给函数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(f"\nhello,{name}")

本例演示了一种创建多行字符串的方式,运算符+= 在赋给变量prompt的字符串末尾附加一个字符串。

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

使用函数input( )时,python将用户输入解读为字符串。如下所示:

age =input("how old are you? ")
print(type(age))
# 结果
how old are you? 21
<class 'str'>

如果只是想打印输出这也没有问题,但如果试图将输入作为数来使用,就会因为类型不同引发错误。为解决这个问题可使用函数int( ),它让python将输入视为数值。如下所示:

age = input("how old are you? ")
age = int(age)
print(type(age))
# 结果
how old are you? 21
<class 'int'>

6.1.3求模运算符

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

print(4 % 3)
print(5 % 3)
print(6 % 3)
# 结果
1
2
0

求模运算符不会指出一个数是另一个数的多少倍,只指出余数是多少。

6.2while循环简介

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

6.2.1使用while循环

可使用while循环来数数。例如:

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

6.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也作为一条消息打印了出来。可修复这种问题,如下所示:

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)

6.2.3使用标志

在要求很多条件都满足才继续运行的程序中,可定义一个变量,用于判断整个程序是否处于活动状态。这个变量称为标志(flag),充当程序的交通信号灯。可以让程序在标志为True时继续运行,并在任何事件导致标志的值为False时让程序停止运行。这样,在while语句中就只需要检查一个条件:标志的当前值是否为True,然后将所有其他测试都放在其他的地方,从而让程序更简洁。

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变为False的事件,就会很容易。在复杂的程序中,标志很有用。

6.2.4使用break退出循环

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

prompt = "\ntell me something, and i will repeat it back to you: "
prompt += "\nenter 'quit' to end the program"
while True:
    city = input(prompt)
    if city == 'quit':
        break
    else:
        print(f"i'd love to go to {city.title()}")

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

6.2.5在循环中使用continue

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

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

6.2.6避免无限循环

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

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

上述代码无法停止循环,因为条件测试x<=5始终为True。
如果程序陷入无限循环,可按Ctrl+C,也可关闭显示程序输出的终端窗口。

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

到目前为止,我们每次都只处理了一项用户信息:获取用户的输入,再将输入打印出来或做出应答,程序再次运行时,获悉另一个输入值并作出响应。然而,要记录大量的用户和信息,需要在while循环中使用列表和字典。
for循环是一种遍历列表的有效方式,但不应在for循环中修改列表,否则将导致python难以跟踪其中的元素。要在遍历列表的同时对其进行修改,可使用while循环,通过将while循环同列表和字典结合起来使用,可收集、储存并组织大量输入,供以后查看和显示。

6.3.1在列表之间移动元素

假设有一个列表包含新注册但还未验证的网站用户。验证这些用户后,如何将他们移到另一个已验证用户列表中呢?一种办法是使用一个while循环,在验证用户的同时将其从未验证用户列表中提取出来,再将其加入另一个已验证用户列表中。

unconfirmed_users = ["alice","brian","candace"]
confirmed_users = [ ]
while unconfirmed_users:
    current_user = unconfirmed_users.pop()
    print(f"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())

pop( ) 以每次一个的方式从列表末尾删除元素。

6.3.2删除为特定值的所有列表元素

在第2章中我们使用函数remove( ) 来删除列表中的特定值。这之所以可行,是因为要删除的值只在列表中出现一次,如果要删除列表中所有为特定值的元素,该怎么办呢?示例如下:

pets = ["dog","cat","dog","goldfish","cat","rabbit","cat"]
print(pets)
while "cat" in pets:
    pets.remove("cat")
print(pets)

6.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,respone in responses.items():
    print(f"{name} would like to climb {response}")
文章来源:https://blog.csdn.net/Little_pudding10/article/details/135170945
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。