在Python中,如何匹配单词中的字符串

Ric*_*cha -2 python

Python代码

str= "bcd"
word = "abcd1"

if pattern = re.search(str, word):
    print pattern.group(1)
Run Code Online (Sandbox Code Playgroud)

我想在一个单词中搜索"bdc"..我该怎么办?

Ama*_* Ts 6

>>> str= "bcd" 
>>> word = "abcd1"
>>> str in word
True
Run Code Online (Sandbox Code Playgroud)

简单的方法