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 ='|'
|     

?
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30daa-2bd56.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30daa-2bd56.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?