Python基础-条件判断
Python 有 if, if else 和 if elif 等判断语句
if 基本使用
if condition:
expressions
condition 的值为 True,将会执行 expressions 语句的内容,否则将跳过该语句往下执行。
实例
x = 1
y = 2
z = 3
if x < y:
…. print(‘x is less than y’)x is less than y
当我们将代码修改为一下
if x < y < z:
print('x is less than y, and y is less than z')
"""
x is less than y, and y is less than z
"""
注意
python 语言中等号的判断使用 ==
if x == y:
print('x is equal to y')
if else 基本使用
if condition:
true_expressions
else:
false_expressions
当 condition为 True,执行 true_expressions 语句; 如果为 False,将执行 else 的内部的 false_ex