Python 3基础教程7-if语句
Posted wangyinghao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 3基础教程7-if语句相关的知识,希望对你有一定的参考价值。
前面文章介绍的循环语句,这里开始介绍控制语句。直接看下面的demo.py例子
# 这里介绍 if语句
x = 5
y = 8
z = 4
s = 5
if x < y:
print(‘x is less than y‘)
if x < y > z:
print(‘x is less than y and greater than z‘)
if x <= s:
print(‘x is less than or equal to s‘)
以上是关于Python 3基础教程7-if语句的主要内容,如果未能解决你的问题,请参考以下文章