Python 条件判断的缩写方法
发布时间:2016-12-28 来源:查字典编辑
摘要:return(1==1)?"iseasy":"mygod"//C#中的用法其实,在Python中,是这样写的:print(1==2)and'...
return (1==1) ? "is easy" : "my god" //C#中的用法
其实,在Python中,是这样写的:
print (1==2) and 'Fool' or 'Not bad'
输出结果:
Not bad