六、输入与while循环(2022-04-09)

1.input的工作原理

input接受一个参数--要向用户显示的提示,并将输入值赋给变量。注意:获取值为字符串。

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

Tell me something,and I will repeat it back to you :good
good

2. 编写清晰的程序

say_hellow = 'If you tell us who you are,we can presonalize the message you see.'
say_hellow += "\nWhat's your first name ?"

name = input(say_hellow)
print(f"Hellow,{name}!")

If you tell us who you are,we can presonalize the message you see.
What's your first name ?wang
Hellow,wang!

3.求模运算。处理数据信息,求模运算符(%)可以将两个数相除的余数返回。

print(4%3)

1

4. while 循环,会在判断条件不满足时一直运行。

current_num = 1
while current_num <= 6:
    print(current_num)
    current_num += 1

1
2
3
4
5
6

5. 使用标签。很多条件都满足才能继续运行的程序中,可以定义一个变量,用于判断整个程序是否处于活动状态。

这个变量成为标志(flag),充当程序的交通信号灯。

say_hellow = 'If you tell us who you are,we can presonalize the message you see.'
say_hellow += "\nWhat's your first name ?"

active = True
while active:
    name = input(say_hellow)
    if name == 'quit':
        active = False
    else:
        print(f"Hellow,{name}!")

If you tell us who you are,we can presonalize the message you see.
What's your first name ?wang
Hellow,wang!
If you tell us who you are,we can presonalize the message you see.
What's your first name ?qiut

Hellow,qiut!
If you tell us who you are,we can presonalize the message you see.
What's your first name ?quit

6. 使用break退出循环

prompt = "\n Please enter the name of a city you have visited"
prompt += "\nEnter 'quit' when you finished."

while True:
    city = input(prompt)
    if city == 'quit':
        break
    else :
        print(f"I'd love to go to {city.title()}")

Please enter the name of a city you have visited
Enter 'quit' when you finished.beijing
I'd love to go to Beijing

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

7. 使用continue跳出单次循环

要返回循环开头,并根据条件测试结果决定是否继续执行循环,使用continue语句。

一下代码实现11以内奇数的输出。

currrent_value = 0
while currrent_value <= 11:  #大于11终止循环
    currrent_value += 1
    if currrent_value %2 ==0:  #变量除2的余数为零,跳出本次循环返回循环开始
        continue
    print(currrent_value)  #不打印余数为2(偶数)的值

1
3
5
7
9
11

8. 避免无限循环

while循环中判断循环终止的条件无法达到,则会无限执行下去,此时可以使用 Ctrl + C ,结束无限循环。

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

for循环是遍历列表的有效方式,但应避免在for循环中修改列表,否则python将难以跟踪其中的元素。

可以使用while循环来处理列表和字典。(以下代码实现 在列表之间移动元素 )

unconfirmed_users = ['alice','wang','zhao','li'] #创建一个待认证用户列表
confirmed_users = []  #创建一个空列表,用于存储已认证用户
while unconfirmed_users:
    confirming_user = unconfirmed_users.pop() #弹出unconfirmed_users列表最后一个用户(元素),赋值至confirming_user
    print(f"Verifying user : {confirming_user.title()}")
    confirmed_users.append(confirming_user) #弹出的用户追加至空列表-confirmed_users
print("\nThe follow users have confirmed:")
for confirmed_user in confirmed_users: #遍历打印confirmed_users中的用户(元素)
    print(confirmed_user.title())

Verifying user : Li
Verifying user : Zhao
Verifying user : Wang
Verifying user : Alice
The follow users have confirmed:
Li
Zhao

10. 删除列表中特定值所有元素

remove()可以删除列表中特定值(第一个),使用while循环删除所有特定值。


pets = ['dog','cat','dog','fish','tutle','cat','mouse','cat']
print(pets)

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

['dog', 'cat', 'dog', 'fish', 'tutle', 'cat', 'mouse', 'cat']
['dog', 'dog', 'fish', 'tutle', 'mouse']

11. 使用用户输入充填字典

results = {} #创建空字典用于存储调查结果
polling_active = True #设置while语句的标识,用于控制是否终端循环

while polling_active:
    name = input('\n请输入你的名字') #输入调查者的名字
    polling_result = input("What's your favorite thing in weekend?") #输入调查结果

    results[name] = polling_result #将调查结果存入字典
    repeat = input("Anyone else?(yes or no)") #看看是否还有人参与调查
    if repeat == 'no':
        polling_active = False
print('\n~~~ poll results ~~~')
for name , result in results.items():
    print(f"{name}‘s favorite thing is {result}!")

请输入你的名字>? wang
What's your favorite thing in weekend?>? eating
Anyone else?(yes or no)>? yes
请输入你的名字>? li
What's your favorite thing in weekend?>? reading
Anyone else?(yes or no)>? yes
请输入你的名字>? zhang
What's your favorite thing in weekend?>? running
Anyone else?(yes or no)>? yes
请输入你的名字>? zhao
What's your favorite thing in weekend?>? sleeping
Anyone else?(yes or no)>? no

wang‘s favorite thing is eating!
li‘s favorite thing is reading!
zhang‘s favorite thing is running!
zhao‘s favorite thing is sleeping!
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,185评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,445评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,684评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,564评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,681评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,874评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,025评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,761评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,217评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,545评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,694评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,351评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,988评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,778评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,007评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,427评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,580评论 2 349

推荐阅读更多精彩内容