发布时间:2019-09-13 09:29:19编辑:auto阅读(2741)
二元表达式:
wide=1 new_w = 299 if not wide else 28 print(new_w) new_w = 299 if wide>0 else 28 print(new_w)
a,b=1,2 max = a if a > b else b
三元表达式
wide=0 new_w = 299 if wide>0 else 'sdf' if wide==0 else 28 print(new_w)
三目运算符:
这个是三目运算符(伪,因为Python根本就没有三目):
val = float(raw_input('Age: '))
print 'You should be', ('working','retired')[val>65]
上一篇: ActiveMQ平台搭建 python
下一篇: python全局变量的使用
47848
46401
37285
34737
29318
25975
24918
19954
19549
18032
5795°
6419°
5932°
5964°
7070°
5917°
5948°
6441°
6405°
7782°