标签:style blog color sp div on c log r
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
标签:style blog color sp div on c log r
原文地址:http://www.cnblogs.com/h82258652/p/3995891.html