Python 条件判断的缩写方法

脚本专栏 发布日期:2025/1/12 浏览次数:1

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