我是 Python 新手,我正在尝试使用具有这种格式的三元运算符(我认为是这样)
value_true if <test> else value_false
这是一段代码:
expanded = set()
while not someExpression:
continue if currentState in expanded else expanded.push(currentState)
# some code here
但是 Python 不喜欢它并说:
SyntaxError: invalid syntax (pointed to if)
如何解决?