天天看點

Python學習-6.Python的分支語句

Python的分支語句比較簡單,隻有if、else、elif三個關鍵字,也就是說,Python沒有switch語句,而且,Python中并沒有?:這個三目運算符。

例子:

1 age = 18
2 if age < 18:
3     print('too young')
4 elif age == 18:
5     print('ok')
6 else:
7     print('too old')      

結果輸出為ok