博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
04 if条件判断 流程控制
阅读量:5892 次
发布时间:2019-06-19

本文共 5521 字,大约阅读时间需要 18 分钟。

条件判断 if 

语法一: if 条件:     # 条件成立时执行的子代码块         代码1         代码2         代码3
示例:sex='female'age=18is_beautiful=Trueif sex == 'female' and age > 16 and age < 20 and is_beautiful:    print('开始表白。。。')print('other code1...')print('other code2...')print('other code3...')
语法二: if 条件:     # 条件成立时执行的子代码块     代码1         代码2         代码3 else:     # 条件不成立时执行的子代码块      代码1       代码2       代码3
示例:sex='female'age=38is_beautiful=Trueif sex == 'female' and age > 16 and age < 20 and is_beautiful:    print('开始表白。。。')else:    print('阿姨好。。。')print('other code1...')print('other code2...')print('other code3...')
语法三: if 条件1:       if 条件2:             代码1     代码2             代码3
示例:sex='female'age=18is_beautiful=Trueis_successful=Trueheight=1.70if sex == 'female' and age > 16 and age < 20 and is_beautiful \        and height > 1.60 and height < 1.80:     print('开始表白。。。')    if is_successful:        print('在一起。。。')    else:        print('什么爱情不爱情的,爱nmlgb的爱情,爱nmlg啊.')else:    print('阿姨好。。。')print('other code1...')print('other code2...')print('other code3...')
语法四: if 条件1:       代码1       代码2       代码3 elif 条件2:       代码1       代码2       代码3 elif 条件3:       代码1       代码2       代码3 ....... else:       代码1       代码2       代码3
示例:如果成绩 >= 90,那么:优秀如果成绩 >= 80且 < 90, 那么:良好 如果成绩 >= 70且 < 80, 那么:普通其他情况:很差score = input('please input your score: ')  # score='100'score = int(score)if score >= 90:    print('优秀')elif score >= 80:    print('良好')elif score >= 70:    print('普通')else:    print('很差')

流程控制:while循环

语法: while 条件:       代码1       代码2       代码3
while True:    name=input('please input your name: ')    pwd=input('please input your password: ')    if name == 'egon' and pwd == '123':        print('login successful')    else:        print('username or password error')
结束while循环的两种方式 方式一:条件改为False,       在条件改为False时不会立即结束掉循环,而是要等到下一次循环判断条件时才会生效
tag=True    while tag:        name=input('please input your name: ')        pwd=input('please input your password: ')            if name == 'egon' and pwd == '123':            print('login successful')            tag=False        else:            print('username or password error')            print('===>')
方式二:while+break       break一定要放在循环体内,一旦循环体执行到break就会立即结束本层循环
while True:        name=input('please input your name: ')        pwd=input('please input your password: ')            if name == 'egon' and pwd == '123':            print('login successful')            break        else:            print('username or password error')            print('===>>>>>')        print('===>>>>>')
while+continue:结束本次循环,直接进入下一次循环
示例一count=1while count < 6: #count=6    if count == 4:        count += 1        continue            print(count)    count+=1
示例二:while True:    name=input('please input your name: ')    pwd=input('please input your password: ')    if name == 'egon' and pwd == '123':        print('login successful')        break    else:        print('username or password error')        # continue # 此处加continue无用
了解知识 while + else: while 条件:       代码1       代码2       代码3 else:       在循环结束后,并且在循环没有被break打断过的情况下,才会执行else的代码
tag=Truewhile tag:    print(1)    print(2)    print(3)    # tag=False    breakelse:    print('else的代码')

while 条件1:

while 条件2:    

  代码1    
  代码2    
  代码3

示范一:while True:    name=input('please input your name: ')    pwd=input('please input your password: ')    if name == 'egon' and pwd == '123':        print('login successful')        while True:            print("""            0 退出            1 取款            2 转账            3 查询            """)            choice=input('请输入您要执行的操作:') #choice='1'            if choice == '0':                break            elif choice == '1':                print('取款。。。')            elif choice == '2':                print('转账。。。')            elif choice == '3':                print('查询')            else:                print('输入指令错误,请重新输入')        break    else:        print('username or password error')
示范二:tag=Truewhile tag:    name=input('please input your name: ')    pwd=input('please input your password: ')    if name == 'egon' and pwd == '123':        print('login successful')        while tag:            print("""            0 退出            1 取款            2 转账            3 查询            """)            choice=input('请输入您要执行的操作:') #choice='1'            if choice == '0':                tag=False            elif choice == '1':                print('取款。。。')            elif choice == '2':                print('转账。。。')            elif choice == '3':                print('查询')            else:                print('输入指令错误,请重新输入')    else:        print('username or password error')

流程控制:for循环

  for循环的强大之处在于循环取值
l=['a','b','c','d','e']i=0while i < len(l):    print(l[i])    i+=1for x in l: # x='b'    print(x)dic={
'name':'egon','age':18,'gender':'male'}for x in dic: print(x,dic[x])
for + break
nums=[11,22,33,44,55]for x in nums:    if x == 44:        break    print(x)
for + continue
nums=[11,22,33,44,55]for x in nums:    if x == 22 or x == 44:        continue    print(x)
for + else
names=['egon','kevin1111_dsb','alex_dsb','mac_dsb']for name in names:    if name == 'kevin_dsb':        break    print(name)else:    print('======>')
for+ range()
range的用法>>> range(1,5)[1, 2, 3, 4]>>> for i in range(1,5):...     print(i)...1234>>> range(1,5,1)[1, 2, 3, 4]>>> range(1,5,2) # 1 3[1, 3]
for i in range(5): # 0 1 2 3 4     print(i)
for嵌套
for嵌套for i in range(3):    for j in range(4):        print(i,j)执行结果:0 00 10 20 31 01 11 21 32 02 12 22 3
 

转载于:https://www.cnblogs.com/zhouyongv5/p/10578165.html

你可能感兴趣的文章
[WebKit内核] JavaScriptCore深度解析--基础篇(一)字节码生成及语法树的构建详情分析...
查看>>
PHP专业开发IDE——Zend Studio 10.5预览版发布
查看>>
ssh两台机器配置互相信任关系
查看>>
Linux下Nginx编译安装
查看>>
c++ 深浅拷贝(传统写法 现代写法)
查看>>
java之猜数字游戏
查看>>
链接器下——链接器实战
查看>>
java互联网架构师课程资料分享
查看>>
干货分享微服务spring-cloud(2.概览)
查看>>
ThinkPHP源码学习 redirect函数 URL重定向
查看>>
浏览器与服务端协商缓存
查看>>
nginx-tomcat负载均衡redis-session共享,静态资源分离
查看>>
【安全牛学习笔记】tcpdump抓包实战
查看>>
【安全牛学习笔记】DNS信息收集
查看>>
阿里云参与两大国家工程实验室获批,人工智能继续深入工业制造
查看>>
计算数IP据报的校验和
查看>>
【干货分享】流程DEMO-资产请购单
查看>>
Linux学习总结(三十六)lamp之配置防盗链
查看>>
实现基于LNMP的电子商务网站
查看>>
7.28布局
查看>>