在 Python 中从词干中切出前缀

发布于 2024-11-09 15:57:30 字数 355 浏览 0 评论 0原文

我想从茎上切下词缀。我使用以下命令尝试了后缀,对于“菜肴”来说没问题。但是,当我想使用前缀(例如“撤消”)来执行此操作时,如何在Python中定义前缀来获取撤消的结果?

>>> def stem(word):
    for suffix in ['ing', 'lity', 'es']:
        if word.endswith(suffix):
            return word[:-len(suffix)]
        return word
>>> re.findall(r'^(.*)(ing|lity|es)$', 'dishes')
[('dish', 'es')]

I want to slice the affixes from stem. I tried the suffixes with the following command and it was OK for 'dishes'. However when I want to do it with a prefix (for example, 'undo'), how can I define the prefix in Python to get the result of un-do?

>>> def stem(word):
    for suffix in ['ing', 'lity', 'es']:
        if word.endswith(suffix):
            return word[:-len(suffix)]
        return word
>>> re.findall(r'^(.*)(ing|lity|es)
, 'dishes')
[('dish', 'es')]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

厌味 2024-11-16 15:57:30

那么,为什么不像您那样使用正则表达式呢?

>>> re.findall(r'^(un|ir)(.*)
, 'undo')
[('un', 'do')]

Well, why not use regulare expressions the same way you did ?

>>> re.findall(r'^(un|ir)(.*)
, 'undo')
[('un', 'do')]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文