Posted in Python onDecember 04, 2019
二元表达式:
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]
以上这篇python二元表达式用法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
python二元表达式用法
- Author -
ShellCollector声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@