比如seq = '我的兩位朋友周杰和周杰倫。'match_target = '周杰|周杰倫'R = re.findall(match_target,seq)return的R為['周杰', '周杰'],說明match_target寫得有問題,該如何修改? 查看完整描述