标签: python
我想检查字符串s是否包含字符'B'或'E'(或两者)。我当然可以做
s
'B'
'E'
if 'E' in s or 'B' in s: do_stuff()
但我想知道变体
if ('E' or 'B') in s: do_stuff()