How to match similar words in Python at the same time?

for example, seq ="my two friends Zhou Jie and Jay Chou."
match_target = "Zhou Jie | Jay Chou"
R = re.findall (match_target,seq)
the R of return is ["Zhou Jie", "Zhou Jie"], and
indicates that there is something wrong with match_target. How should I modify it?


match_target ='|'
|     

?
Menu