从这小节之后,小菜就不用IDLE里面写实例,将用vsCode来编写python代码。

Python 条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块,在python中,没有switch语法。

1.if语法格式

mode = True

if mode :
    pass
else:
    pass

注意:pass是一个空语句,一般用于占位符

2.if嵌套

if condition:
    pass
    if condition1:
        pass
    elif condition2:
        pass
    else:
        pass
else:
    if condition3:
        pass
    else:
        pass

python3.7 入门教程

Python 准备工作(1) Python 基本数据类型 Number(2) Python 字符串 str(3) Python 列表List(4) Python 元组tuple(5) Python 集合set(6) Python 字典 dict(7) Python 变量(8) Python 运算符(9) Python 条件语句(10) Python 循环语句(11) Python 包 模块(12) Python 函数一(13) Python 函数二(14) Python 面向对象(15) Python 正则(16) Python json(17) Python 枚举(18) Python 闭包(19) Python 装饰器(20) Python 杂记(21) Python with(22)