python中if else的用法的例子
时间: 2023-10-01 08:07:47 浏览: 107
python 中if else 语句的作用及示例代码
5星 · 资源好评率100%
当一个条件成立时执行某些操作,否则执行其他操作,这就是 if else 语句的作用。
以下是一个简单的 Python if else 语句的例子:
```
x = 5
if x > 10:
print("x is greater than 10")
else:
print("x is less than or equal to 10")
```
在上面的例子中,我们检查条件 x 是否大于 10,如果是,则输出 "x is greater than 10",否则输出 "x is less than or equal to 10"。
请注意,Python 中使用缩进来定义 if else 语句代码块。在上面的示例中,条件为 `x > 10`,代码块是由两个对 `print` 函数的调用构成的。如果条件为真,则执行第一个 `print` 语句,否则,执行第二个 `print` 语句。
阅读全文