Python中三元运算符是否存在【面试题详解】

今天爱分享给大家带来Python中三元运算符是否存在【面试题详解】,希望能够帮助到大家。
三元运算在Python2.5中被加入


a if test else b

使用


>>> 'true' if True else 'false'
'true'
>>> 'true' if False else 'false'
'false'

人已赞赏
Python

KeyError: ‘data‘【解决方法】

2020-12-26 17:53:43

Python

Python中的do-while如何实现【面试题详解】

2020-12-27 15:16:49

'); })();