在字符串中寻找字符

时间:2019-05-27 08:58:08

标签: python

我想检查字符串s是否包含字符'B''E'(或两者)。我当然可以做

if 'E' in s or 'B' in s:
    do_stuff()

但我想知道变体

if ('E' or 'B') in s:
    do_stuff()
  1. 等同于上一个
  2. 是pythonic

0 个答案:

没有答案