1.  一个简单例子

    python中,检查是否相等时,大小写不同默认是不相等的。如果需要不考虑大小写,则可把他们都统一转换成小写。

    检查多个条件时有以下两种情况:

    1. 必须同时符合多种情况:利用and语句。例如:if (age_0>21) and (age_1<=40)

    2. 多种情况符合其一即可:用or。例如:

if (age_0<18) or (age_1>60)

        如果你希望检查一个元素是否存在于一个列表中,可以使用in,如例所示:

>>>  requested_toppings=['mushrooms','onions','pinepple']

>>> 'mushrooms' in requested_toppings

屏幕显示Ture

如果你希望检查一个元素不存在于一个列表中,可以使用 not in。如例所示:

>>> 'apple' not in requested_toppings

答案为True