欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python 条件判断的缩写方法

程序员文章站 2022-10-06 12:11:18
return (1==1) ? "is easy" : "my god" //c#中的用法 其实,在python中,是这样写的: print (1==2) and 'foo...
return (1==1) ? "is easy" : "my god" //c#中的用法
其实,在python中,是这样写的:
print (1==2) and 'fool' or 'not bad'
输出结果:
not bad