Python 条件判断的缩写方法

1110次阅读  |  发布于5年以前

return (1==1) ? "is easy" : "my god" //C#中的用法
其实,在Python中,是这样写的:
print (1==2) and 'Fool' or 'Not bad'
输出结果:
Not bad

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8