python基础:while循环,利用while循环操作列表和字典


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

while循环的使用

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

选择何时退出

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

message = '请输入您的年龄:'
age = ' '
while age != 'quit':
    age = input(message)
    if age != "quit":
        print("您的年龄是:" + age)
        
'''
请输入您的年龄:18
您的年龄是:18
请输入您的年龄:66
您的年龄是:66
请输入您的年龄:36
您的年龄是:36
请输入您的年龄:25
您的年龄是:25
请输入您的年龄:quit
'''

使用标志

active = True
message = '请输入您的年龄:'
while active:
    age = input(message)
    if age != "quit":
        print("您的年龄是:" + age)
    else:
        print("您已退出!")
        active = False
        
'''
请输入您的年龄:12
您的年龄是:12
请输入您的年龄:33
您的年龄是:33
请输入您的年龄:65
您的年龄是:65
请输入您的年龄:20
您的年龄是:20
请输入您的年龄:quit
您已退出!
'''

使用break 退出循环

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

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

message = '请输入您的年龄:'
while True:
    age = input(message)
    if age != "quit":
        print("您的年龄是:" + age)
    else:
        print("您已退出!")
        break
        
'''
请输入您的年龄:15
您的年龄是:15
请输入您的年龄:66
您的年龄是:66
请输入您的年龄:345
您的年龄是:345
请输入您的年龄:32
您的年龄是:32
请输入您的年龄:quit
您已退出!
'''

在循环中使用continue

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

只打印其中偶数的循环:

current_number = 0
while current_number < 10:
    current_number += 1
    if current_number % 2 == 0:
        continue
    print(current_number)
    
'''
1
3
5
7
9
'''

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

要在遍历列表的同时对其进行修改,可使用while循环。通过将while 循环同列表和字典结合起来使用,可收集、存储并组织大量输入,供以后查看和显示。

在列表之间移动元素

# 首先,创建一个待验证用户列表
# 和一个用于存储已验证用户的空列表
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
'''

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

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循环提示用户输入任意数量的信息。

responses={}
res_active=True

while res_active:
    name=input("请输入姓名:")
    response=input("请输入回答:")
    
    responses[name]=response # 注意键值对
    
    repeat=input("是否继续[y/n]?")
    if repeat=='n':
        res_active=False

print("\n------调查结果------\n")
print(responses)
for name,place in responses.items():
    print(name+':'+place)
'''
请输入姓名:二小
请输入回答:123456
是否继续[y/n]?y
请输入姓名:麻子
请输入回答:456789
是否继续[y/n]?n

------调查结果------

{'二小': '123456', '麻子': '456789'}

二小:123456
麻子:456789
'''

nses.items():
print(name+’:’+place)
‘’’
请输入姓名:二小
请输入回答:123456
是否继续[y/n]?y
请输入姓名:麻子
请输入回答:456789
是否继续[y/n]?n

------调查结果------

{‘二小’: ‘123456’, ‘麻子’: ‘456789’}

二小:123456
麻子:456789
‘’’


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值