python if判断在哪写

2023-12-13 14:10:57 网络知识 匿名

pythonif结构允许程序做出选择,并根据不同的情况执行不同的操作基本用法

比较运算符

根据PEP8标准,比较运算符两侧应该各有一个空格,比如:5==3。PEP8标准==(相等):如果该运算符两侧的值完全相同则返回True!=(不等):与相等相反

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())

以上内容为大家介绍了pythonif判断在哪写,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:瀚银百科。

发表评论: