Python 条件判断的缩写方法
时间:2022-03-26 09:01:18|栏目:Python代码|点击: 次
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
上一篇:python如何使用socketserver模块实现并发聊天
栏 目:Python代码
下一篇:Python内置异常类型全面汇总
本文标题:Python 条件判断的缩写方法
本文地址:http://www.codeinn.net/misctech/197273.html