python从入门到实践第七章——输入与循环

'''
函数input()的工作原理:让程序暂停,等待用户输入。在终端输入与输出。
'''
message = input('Tell me something,and I will repeat it back to you: ')
print(message)
name = input('Please enter your name:')
print('hello,'+name+'!')
'''
多行内容输入:将字符串存入变量里,然后再传给input()。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.title()+'!')
'''
使用int()来获取数值输入
'''
age = input('How old are you?')
if int(age) >= 18:
print('true')
'''如果是if age >= 18:则会出现错误,程序无法执行。因为input()将接收的内容全部转换为字符串。'''
'''
判断一个人是否满足过山车的身高
'''
height = input('How tall are you,in inches?')
height =int(height)
if height >= 36:
print('you are tall enough to ride!')
else:
print('you will be able to ride when you are a little older.')
print('-------')
height = input('How tall are you,in inches?')
if int(height) >= 36:
print('you are tall enough to ride!')
else:
print('you will be able to ride when you are a little older.')
'''
求模运算符:%将两个数相除并返回余数。
'''
number = input('enter a number ,and I will tell you if it`s even or odd:')
number = int(number)
if number % 2 == 0:
print('the number '+str(number)+' is even')
else:
print('the number '+str(number)+' is odd')
'''
while循环
'''
current_number = 1
while current_number <= 5:
print(current_number)
current_number += 1
'''
for 语句表示的循环
'''
print('--------')
for current_number in range(1,6):
print(current_number)
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)

'''
for 语句表示的循环
'''
print('--------')
for current_number in range(1,6):
print(current_number)
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':#如果输入的为quit则不输出quit而直接结束。
print(message)
'''
使用标志---用于多条件判断
'''
print('--------')
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)
'''
退出循环:
1、break:直接跳出整个循环,不在运行循环中的余下代码
2、cotinue:返回到循环开头,并根据条件测试结果决定是否继续执行循环。
'''
print('--------')
prompt = '\nplease enter a name of a city you have visited:'
prompt += '\nEnter "quit" when you are finished. '#在字符串中要用""而不要重复用''
while True :
city = input(prompt)
if city == 'quit':
break
else:
print('I`d love to go to '+city.title()+'!')
print('--------')
current_number = 0
for current_number in range(1,11):
if current_number % 2 == 1:
print(current_number)
print('--------')
current_number = 0
while current_number < 10:
current_number += 1
if current_number % 2 == 0:
continue#此处若没有continue将会出错。
print(current_number)

'''
for与while 的用法区别:
for 是遍历列表,便利时不应修改列表。
while是遍历的同时修改列表
'''
'''
列表之间移动元素
'''
unconfirmed_users = ['alice','brain','candace']
confirmed_users = []
while unconfirmed_users :
current_user = unconfirmed_users.pop()
confirmed_users.append(current_user)
print('\nThe following users have been confirmed:')
for confirmed_user in confirmed_users:
print(confirmed_user.title())
'''
删除包含特定值的所有列表元素:
.remove()
'''
pets = ['dog','cat','dog','goldfish','cat','rabbit','cat']
print(pets)
while 'cat' in pets:
pets.remove('cat')
print(pets)
'''
使用用户输入来填充字典。
'''
responses = {}
polling_active = True
while polling_active:
name = input('\nWhat is your name?')
response = input('which moutain 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 Result----')
for name,response in responses.items():
print(name+' would like to climb'+response+'.')

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

推荐阅读更多精彩内容