首页 > 编程 > Python > 正文

Python 条件判断的缩写方法

2020-02-23 04:41:08
字体:
来源:转载
供稿:网友
return (1==1) ? "is easy" : "my god" //C#中的用法
其实,在Python中,是这样写的:
print (1==2) and 'Fool' or 'Not bad'
输出结果:
Not bad
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表