Python中的三元表达式
一般语言的三元表达式都是这种形式:
result = statement ? true : false
// For examle
result = a > b ? a : b
Python中的三元表达式比较特殊,用下面这种形式
result = true if statement else false
# For example
result = a if a > b else b
About
了解更多有趣的操作请关注我的微信公众号:DealiAxy 每一篇文章都在我的博客有收录:blog.deali.cn