if 结构允许程序做出选择,并根据不同的情况执行不同的操作
基本用法
比较运算符
根据 PEP 8 标准,比较运算符两侧应该各有一个空格,比如:5 == 3。 PEP8 标准 ==(相等):如果该运算符两侧的值完全相同则返
回 True !=(不等):与相等相反
推荐:Python教程
print(5=='5') print(True=='1') print(True==1) print('Eric'.lower()=='eric'.lower())
>(大于):左侧大于右侧则输出 True
<(小于):与大于相反
>=(大于等于):左侧大于或者等于右侧则输出 True
<=(小于等于):左侧小于或者等于右侧则输出 True
print(5>3) print(2>True) print(True>False)
if的用法
if 进行判断
desserts=['icecream','chocolate','applecrisp','cookies'] favorite_dessert='applecrisp' hate_dessert='chocolate' fordessertindesserts: ifdessert==favorite_dessert: print("%sismyfavoritedessert!"%dessert.title())原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容