Questions tagged «ternary»

9
如果另有声明,如何做一线?
我可以像在php中那样在go(golang)中编写带有变量赋值的简单if-else语句吗?例如: $var = ( $a > $b )? $a: $b; 目前,我必须使用以下内容: var c int if a > b { c = a } else { c = b } 抱歉,如果此控制声明我不能记住名字,并且我无法在现场或通过Google搜索找到信息。:/


7
Python三元运算符
是否可以在Python中一行执行此操作? if <condition>: myList.append('myString') 我已经尝试过三元运算符: myList.append('myString' if <condition>) 但是我的IDE(MyEclipse)不喜欢它,没有一个else。
82 python  ternary 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.