Python学习4(用户输入和while循环)

一、用户输入

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

1、几个简单的示例

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

# #使用int获取数值输入
age = input("How old are you? ")
print(age)

if int(age) >= 18:  # Python将输入解读成了字符串(转换为int),或者可以在前面声明:age = int(age)
    print("OK!Permitted.")

示例结果:

示例结果
Test:
判断一个数的奇偶性

# #求模运算符(%):两个数相除并返回余数
# 判断一个数奇偶性
number = input("Enter a number,and I will 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 循环不断地运行,直到指定的条件不满足为止。

1、while的使用和退出

# #使用while循环
current_number = 1
while current_number <= 5:
    print(current_number)
    current_number += 1

# #退出while循环
# 当输入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)

结果:
在这里插入图片描述

  • 关于退出while循环:除了使用关键字判断退出外,还可以使用:

1、使用标志判断退出:

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)

2、使用break断退出:

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':
        break
    else:
        print(message)

补充说明: 使用break断是退出while的整个循环,而用continue是要返回到循环开头,并根据条件测试结果决定是否继续执行循环。(即只退出本次循环)
例如:打印1-10的奇数

# 打印1-10的奇数
current_number = 0
while current_number < 10:
    current_number += 1
    if current_number % 2 == 0:
        continue

    print(current_number)
print("\n")

注意: 如果程序陷入无限循环,可按Ctrl + C,也可关闭显示程序输出的终端窗口。

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

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

2.1在列表之间移动元素

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

# 首先,创建一个待验证用户列表
# 和一个用于存储已验证用户的空列表
unconfirmed_users = ['tom', 'jack', 'mary']
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())

移动结果:
在这里插入图片描述

2.2删除列表指定元素
# #删除列表中所有的指定元素
pets = ['dog', 'cat', 'dog', 'goldfish', 'cat', 'rabbit', 'cat']
print(pets)

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

print(pets)
2.3使用用户数据来填充字典

question: 创建一个调查程序,其中的循环每次执行时都提示输入被调查者的名字和回答。我们将收集的数据存储在一个字典中,以便将回答同被调查者关联起来:

responses = {}

# 设置一个标志
polling_active = True

while polling_active:
    # 提示输入被调查者的名字和回答
    name = input("\nWhat is your name? ")
    response = input("Who is your favorite girl? ")

    # 将答卷存储到字典中
    responses[name] = response

    # 查看是否还有人继续接受调查
    repeat = input("Would you like to let another person respond? (Yes/No) ")
    if repeat == 'No':
        polling_active = False

# 调查结束,显示结果
print("\n--- polling Results ---")
for name, response in responses.items():
    print(name + " like " + response + ".")

2.3结果
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值