如何在python中反转部分句子?

我有一句话,让我们说:

敏捷的棕色狐狸跳过了懒狗

我想创建一个函数,它接受2个参数,一个句子和一个要忽略的事物列表.并且它返回带有反转词的句子,但它应该忽略我在第二个参数中传递给它的东西.这就是我现在所拥有的:

def main(sentence,ignores):
    return ' '.join(word[::-1] if word not in ignores else word for word in sentence.split())

但这只有在我传递第二个列表时才会起作用:

print(main('The quick brown fox jumps over the lazy dog',['quick','lazy']))

但是,我想传递一个这样的列表:

print(main('The quick brown fox jumps over the lazy dog',['quick brown','lazy dog']))

预期结果:
ehT快速棕色xof spmuj revo eht懒狗

所以基本上第二个参数(列表)将包含应忽略的句子部分.不只是单个单词.

我必须使用正则表达式吗?我试图避免它……

解决方法

我是第一个建议避免使用正则表达式的人,但在这种情况下,不使用它的复杂性大于使用它们所增加的复杂性:

import re

def main(sentence,ignores):
    # Dedup and allow fast lookup for determining whether to reverse a component
    ignores = frozenset(ignores)

    # Make a pattern that will prefer matching the ignore phrases,but
    # otherwise matches each space and non-space run (so nothing is dropped)
    # Alternations match the first pattern by preference,so you'll match
    # the ignores phrases if possible,and general space/non-space patterns
    # otherwise
    pat = r'|'.join(map(re.escape,ignores)) + r'|\S+|\s+'

    # Returns the chopped up pieces (space and non-space runs,but ignore phrases stay together
    parts = re.findall(pat,sentence)

    # Reverse everything not found in ignores and then put it all back together
    return ''.join(p if p in ignores else p[::-1] for p in parts)

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...