Python基础(06):if语法
一、基础概述
Python条件语句是语法通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。
可以通过下图来简单了解条件语句的基础执行过程:
二、if 语句
Python中if语句的云南idc服务商语法一般形式如下所示:
1 2 3 4 5 6 if condition_1: statement_block_1 elif condition_2: statement_block_2 else: statement_block_3如果 "condition_1" 为 True 将执行 "statement_block_1" 块语句
如果 "condition_1" 为False,将判断 "condition_2"
如果"condition_2" 为 True 将执行 "statement_block_2" 块语句
如果 "condition_2" 为False,基础将执行"statement_block_3"块语句
注意:
每个条件后面要使用冒号(:),语法表示接下来是基础满足条件后要执行的语句块。
使用缩进来划分语句块,服务器托管语法相同缩进数的基础语句在一起组成一个语句块。
在Python中没有switch – case语句。语法