6、Python—if语句

本文介绍了Python中的if语句,包括条件测试(如相等、不等、布尔表达式),如何使用and和or处理多个条件,以及检查列表中的元素。此外,还讲解了在处理列表时如何检查特殊元素、验证列表非空以及运用多个列表。
摘要由CSDN通过智能技术生成

示例代码:

cars = ['audi','bmw','subaru','toyota']
for car in cars:
    if car == 'bmw':
        print(car.upper())
    else:
        print(car.title())

1、条件测试:

  1. 检查是否相等、是否不相等

  2. 检查多个条件

    1. 使用and检查多个条件。

    2. 使用or检查多个条件。

    3. 检查特定值是否包含在列表中。(in , not in)

      requested_toppings = ['mushrooms','onions','pineapple']
      'mushrooms' in requested_toppings
      true
      'pepperoni' in requested_toppings
      false
      
    4. 布尔表达式

  3. if-elif-else结构

2、使用if语句处理列表:

  1. 检查特殊元素。
    #检查菜单中某项菜品是否用光
    requested_toppings =['mushrooms','extra cheese','green pineapple']
    for requested_topping in requested_toppings:
        if requested_topping == 'green pineapple':
            print("Sorry, we are out of green peppers right now.")
        else:
            print("Adding " + requested_topping + ".")
    print("\nFinished making your pizza!")
    
  2. 确定列表不是空的。
    #检查顾客点的配料列表是否为空
    requested_toppings = []
    if requested_toppings:
        for requested_topping in requested_toppings:
            print("Adding " + requested_topping + ".")
            print("\nFinished making your pizza:")
        else:
            print("Are you sure you want a plain pizza?")
    
  3. 使用多个列表。
    #检查客户的需求是否为披萨店供应的配料
    available_toppings = ['mushrooms','olives','green peppers','pepperoni','pineapple','extra cheese']
    requested_toppings = ['mushrooms','french fries','extra cheese']
    for requested_topping in requested_toppings:
        if requested_topping in available_toppings:
            print("Adding " + requested_topping + ".")
        else:
            print("Sorry, we don't have " + requested_topping + ".")
    print("\nFinished making your pizza!")
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值