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
其实,在python中,是这样写的:
print (1==2) and 'fool' or 'not bad'
输出结果:
not bad