函数input()的工作原理

函数input()让程序暂停,一方面打印括号里的内容,并且同时等待用户输入一些文本,获取用户输入后,将其储存在一个变量里,方便你使用。

message=input('tell me something: ')
print(message)

程序等待用户输入,并在用户按回车键后继续运行

编写清晰的程序

每当你使用函数input时,都应指定清晰的提示以告诉用户需要提供什么信息——任何指出用户该输入何种信息都行

message=input('tell me something: ')
print(message)

有时候提示可能超过一行,在这种情况下,可将提示存储在一个变量里,再将这个变量传递给函数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? 888

Hello, 888!

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

使用函数input()时,输入会被解读为字符串

a=input()
a
'23'#输入23

这时你就可以使用int()函数将字符串转化为整数值

a=input()
a=int(a)
a

在实际中使用函数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.")

求模运算符

将两个数相除并返回余数:%,他只会指出余数是多少,而不会显示商

45%8
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.")

上面是一个判断一个数是否是偶数或者奇数的程序

while循环简介

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

使用while循环

例如用while循环来数数

current_number = 1
while current_number <= 5:
    print(current_number)
    current_number += 1
1
2
3
4
5

初始值为1,每次循环+1,直到值大于5,不再运行程序

让用户选择何时退出

可使用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)

在这里定义一个message变量,用于储存用户的输入,并给他一个空的字符串,让执行while循环时,有可供检查的东西,在第一次执行while之后,只要输入的不是quit,程序就会一直执行。但是这个程序最后会将quit作为一条消息打印出来。为此我们做如下修改:

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)

现在程序在执行前会做个简单的检查,仅在消息不是退出值时才打印它

使用标志

先前的程序中只有一个条件来判断程序是否执行,但是如有更多的条件的时候该怎么办呢?

在要求很多条件都满足的时候才继续执行时,可定义一个变量,用于判断整个程序是否处于活动状态,这个变量就叫做标志。当标志为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)

使用break退出循环

要立刻退出while循环,不在运行后面的代码,也不管条件测试的结果如何,就要使用break语句,

prompt = "\nPlease tell me 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() + "!")

以true作为条件的循环将不断运行下去,直到遇见break语句

注意在任何循环中都可使用break语句

在循环中使用continue

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

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

这里的continue让python忽略余下的代码,并返回到循环的开头

避免无限循环

如果程序陷入无限循环,可以按Ctrl+C。确认程序至少有一个地方能让循环条件为false或者让break语句执行

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

用for循环遍历列表时不能修改列表,要在遍历列表的同时对其进行修改,可使用while循环

# Start out with some users that need to be verified,
#  and an empty list to hold confirmed users.
unconfirmed_users = ['alice', 'brian', 'candace']
confirmed_users = []

# Verify each user, until there are no more unconfirmed users.
#  Move each verified user into the list of confirmed users.
while unconfirmed_users:
    current_user = unconfirmed_users.pop()
    
    print("Verifying user: " + current_user.title())
    confirmed_users.append(current_user)
    
# Display all confirmed users.
print("\nThe following users have been confirmed:")
for confirmed_user in confirmed_users:
    print(confirmed_user.title())

我们首先创建一个未验证用户列表和一个用于存储已验证的用户,使用while循环和方法pop()来验证未验证用户列表,并将他们添加到已验证用户列表,直到未验证列表为空时,停止验证。

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

使用方法remove()只能够删除在列表中出现一次的元素,如果该元素多次出现,可以使用while循环来一直删除

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

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

在第一次删除cat之后,程序返回到while,再次删除cat,直到cat不在列表里才会停止。

使用用户输入来填充字典

可使用while循环提示用户输入任意数量的信息,下面创建一个调查程序,并把结果储存在一个字典里

responses = {}

# Set a flag to indicate that polling is active.
polling_active = True

while polling_active:
    # Prompt for the person's name and response.
    name = input("\nWhat is your name? ")
    response = input("Which mountain would you like to climb someday? ")
    
    # Store the response in the dictionary:
    responses[name] = response
    
    # Find out if anyone else is going to take the poll.
    repeat = input("Would you like to let another person respond? (yes/ no) ")
    if repeat == 'no':
        polling_active = False
        
# Polling is complete. Show the results.
print("\n--- Poll Results ---")
for name, response in responses.items():
    print(name + " would like to climb " + response + ".")

先设置一个polling_active标志,用来判断调查是否继续。接着通过一个if语句来判断是否还要继续调查,最后把这个字典给打印出来。