笨方法學習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語句。
"""

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