标签: python for-loop if-statement error-handling
我正在尝试检查颜色是否包含蓝色或绿色和红色,并且不起作用。我是否想在管道“ |”内使用“或”运算符。还是我想将管道放在括号之外?我已经尝试了一切,但我不明白自己在做什么错。
colors = 'red red' if ('blue|green') and 'red' in colors: print(True) >>> True