笨方法学习Python-习题30: Else 和 If

# coding=utf-8

people = 30
cars = 40 
buses = 15 

if cars > people:
    print("We should take the cars.")
elif cars < people:
    print("We should not take the cars.")
else:
    print("We can't decide.")

if buses > cars:
    print("That's too many buses.")
elif buses < cars:
    print("Maybe we could take the buses.")
else:
    print("We still can't decide")

if people > buses:
    print("Alright,let's just take the buses.")
else:
    print("Fine,let's stay home then.")


"""
 注意:

    1、每个条件后面要使用冒号(:),表示接下来是满足条件后要执行的语句块。
    2、使用缩进来划分语句块,相同缩进数的语句在一起组成一个语句块。
    3、在Python中没有switch – case语句。
"""

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章