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

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

 一.控制流程之if判断

        1、什么是if判断

           判断一个条件如果成立则。。。不成立则。。。

   2、为何要有if判断

       让计算机能够像人一样具有判断能力

   3、如何用if判断

1 ''' 2 # 语法1: 3 ''' 4 if 条件1: 5     code1 6     code2 7     code3 8     ...... 9 '''10 # age=1811 # if age != 18:12 #     print('你好啊小伙子')13 #     print('加个微信吧...')14 # print('other code...')15 16 # 语法2:17 '''18 if 条件:19     code120     code221     code322     ......23 else:24     code125     code226     code327     ......28 '''29 # age=1830 # sex='male'31 # wuzhong='human'32 # is_beautiful=True33 #34 # if age > 16 and age < 22 and sex == 'female' and \35 #         wuzhong == 'human' and is_beautiful:36 #     print('开始表白...')37 # else:38 #     print('阿姨好,我逗你玩呢...')39 40 41 # 语法3:42 '''43 if 条件1:44     if 条件2:45         code146         code247         code348     code249     code350     ......51 '''52 # age = 1853 # sex = 'female'54 # wuzhong = 'human'55 # is_beautiful = True56 # is_successful = True57 #58 # if age > 16 and age < 22 and sex == 'female' and wuzhong == 'human' and is_beautiful:59 #     print('开始表白...')60 #     if is_successful:61 #         print('在一起')62 #     else:63 #         print('阿姨再见....')64 # else:65 #     print('阿姨好,我逗你玩呢...')66 67 # 语法4:68 '''69 if 条件1:70     子代码块171 elif 条件2:72     子代码块273 elif 条件3:74     子代码块375 elif 条件4:76     子代码块477 .........78 else:79     子代码块580 '''81 82 score = input('your score>>: ')83 score=int(score)84 if score >= 90:85     print('优秀')86 elif score >= 80:87     print('良好')88 elif score >= 70:89     print('普通')90 else:91     print('很差')

 

转载于:https://www.cnblogs.com/frank007/p/9647184.html

你可能感兴趣的文章
shell编程
查看>>
leetcode:8. String to Integer (atoi)
查看>>
archive 打包出错 apple mach-o linker (id) error
查看>>
深度优先用法之检测有无环
查看>>
拆单发货-分布页
查看>>
Intellij Idea 2017创建web项目及tomcat部署实战
查看>>
Visualizing CNN Layer in Keras
查看>>
Java书籍经典Top10
查看>>
iperf——网络性能测试工具
查看>>
sysctl.conf网络内核参数说明(转)
查看>>
谷歌 chrome 浏览器开发者工具打不开的解决方法
查看>>
PHP 简单实现webSocket
查看>>
BZOJ 4085:[Sdoi2015]quality(round 2 音质检测)(数据结构)
查看>>
hdu 2433
查看>>
pure virtual、impure virtual、non-virtual函数的接口继承和实现继承
查看>>
Maven Jetty SSL配置
查看>>
HDU 1060 Left-most Digit
查看>>
POJ 2942 Knights of the Round Table
查看>>
centos 7环境下安装jdk
查看>>
Coursera台大机器学习课程笔记3 – 机器学习的可能性
查看>>