码迷,mamicode.com
首页 > 编程语言 > 详细

Python(13)_if语句

时间:2018-12-23 00:53:24      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:toyota   extra   oms   返回   分享   常见   执行   request   nbsp   

#  if 语句与for循环语句,这个模式在实际编程中经常用
cars = [audi,bmw,subaru,toyota]
for car in cars:
    if car == bmw:
        print(car.upper())
    else:
        print(car.title())

技术分享图片


程序2 :if语句

# if语句
age =7;
if age>=18:
    print("You are old enough to vote!")
# if与else
if age>=18:
    print("You are old enough to vote!")
else:
    print("Sorry,you are too young to vote.")

技术分享图片


程序3 :使用多个elif代码块

# 使用多个elif代码块
age = 12
if age<4:
    price = 0
elif age<18:
    price = 5
elif age<65:
    price=10
else:
    price =5

print("Your admission cost is $"+str(price)+".")

技术分享图片


程序:4:省略else代码块

‘‘‘else 是一条包罗万象的语句,只要不满足任何if 或elif 中的条件测试,其中的代码就会执行,这可能会引入无效甚至恶意的数据。如果知道最终要测试的条件,应考虑使用
一个elif 代码块来代替else 仅当满足相应的条件时,你的代码才会执行。‘‘‘
# 省略else代码块
age = 98
if age<4:
    price = 0
elif age<18:
    price = 5
elif age<65:
    price=10
elif age>=65:
    price =5
print("Your admission cost is $"+str(price)+".")


程序6:if语句下嵌套for循环

‘‘‘在这里,我们首先创建了一个空列表,其中不包含任何配料。在处我们进行了简单检查,而不是直接执行for 循环。在if 语句中将列表名用在条件表达式中
时,Python将在列表至少包含一个元素时返回True ,并在列表为空时返回False 。如果requested_toppings 不为空,就运行与前一个示例相同的for 循环;否则,就打印
一条消息,询问顾客是否确实要点不加任何配料的普通比萨‘‘‘
requests =[]
if requests:
    for request in requests:
        print("Adding "+request+".")
    print("\nFinished making your pizza")
else:
    print("Are you sure you want a plain pizza")

技术分享图片


 

程序7:多个列表,这种形式的在实际编码中也常见

# 多个列表,这种形式的在实际编码中也常见
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")

技术分享图片

 

Python(13)_if语句

标签:toyota   extra   oms   返回   分享   常见   执行   request   nbsp   

原文地址:https://www.cnblogs.com/sunnybowen/p/10163058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!