Python程序:将单数转换为复数


在本文中,我们将学习一个Python程序,用于将单数转换为复数。

假设您给定一个单数单词,我们必须使用各种Python方法将其转换为复数。

使用方法

以下是完成此任务的各种方法:

  • 使用regex模块

  • 使用NLTK和Pattern-en包

  • 使用Textblob模块

  • 使用inflect模块

方法1:使用regex模块

Python中的regex模块根据指定的模式搜索字符串或字符串组。如果它不存在于您的Python中,您必须安装它,此模块通常预装在Python中。

示例

以下程序通过指定适当的正则表达式模式,使用regex模块返回给定单词的复数:

# importing re(regex) module
from re import *
# input word to be pluralized
inputWord = "plant"
print("The plural of the word {", inputWord, "} is:")
# checking whether the input word is ending with s,x,z or is
# ending with ah, eh, ih, oh, uh, dh, gh, kh, ph, rh, th
# with the regex pattern
if search('[sxz]$', inputWord) or search('[^aeioudgkprt]h$', inputWord):
   # If it is true, then get the pluraof the inputWord by adding "es" in end
   print(sub('$', 'es', inputWord))
# checking whether the input word is ending with ay,ey,iy,oy,uy
# with the other regex pattern
elif search('[aeiou]y$', inputWord):
   # If it is true, then get the plural
   # of the word by removing 'y' from the end and adding ies to end
      print(sub('y$', 'ies', inputWord))
# Else add it just "s" to the word at the end to make it plural
else:
   print(inputWord + 's')

输出

执行上述程序后,将生成以下输出:

The plural of the word { plant } is:
plants

但是,这种regex方法对于获取复数效率不高,因为它在某些情况下可以正确地将一些单词变为复数,而在其他情况下则会失败。因此,我们将寻找更有效的方法来确定单词的复数。

方法2:使用NLTK和Pattern-en包

NLTK模块

NLTK模块创建Python应用程序来处理人类语言数据,并提供对语料库和词汇资源的简单接口。

Pattern模块

Pattern模块是一个开源的Python模块,用于执行各种自然语言处理操作。此模块可用于各种任务,包括文本处理和数据挖掘。

使用以下命令安装pattern模块

pip install pattern

使用以下代码下载所需的nltk数据:

# importing nltk module
import nltk
nltk.download('omw-1.4')
# downloading the NLTK data to run the en function of the package module 
nltk.download('popular')

示例

以下程序使用NLTK和Pattern-en包返回给定单词的复数:

# importing pluralize from pattern-en module
from pattern.en import pluralize
# passing the word to be pluralized as an argument to the 
# pluralize() function to make the word plural
print(pluralize('lion'))

输出

执行上述程序后,将生成以下输出:

lions

方法3:使用Textblob模块

Textblob Python模块用于处理文本数据,称为Textblob模块。对于涉及自然语言处理的问题,这是最简单的模块之一。

可以使用以下命令下载此模块。除了texblob模块外,您还需要安装textblob模块的corpora函数。

使用以下命令安装textblob模块:

pip install textblob 

示例

以下程序使用Textblob模块返回给定单词的复数:

# importing TextBlob function from textblob module 
from textblob import TextBlob
# passing the word to be pluralized as an argument to the TextBlob() function 
blobWord = TextBlob('flower')
 
# printing the plural word of the given blob word using the pluralize() function
print(blobWord.words.pluralize())

输出

执行上述程序后,将生成以下输出:

['flowers']

方法4:使用inflect模块

Inflect模块

Python中的Inflect模块用于创建复数名词、单数名词、序数和不定冠词,以及将数字转换为文字。可以使用以下命令安装此模块。

安装:

pip install inflect

算法(步骤)

以下是执行所需任务的算法/步骤:

  • 使用import关键字导入inflect模块。

  • 使用engine()函数设置inflect模块的引擎/源。

  • 使用pluralize()函数通过将输入单词作为参数传递给它来获取给定单词的复数,并打印结果单词。

  • plural()函数将单数名词转换为复数名词,功能非常合适。

示例

以下程序使用inflect模块返回给定单词的复数:

# importing inflect module
import inflect
m = inflect.engine()
# input word to be pluralized 
word = 'dog'
# Pass the word to be pluralized as an argument to the plural() 
# function to make the word plural.
print("The plural form of 'dog' is: ", m.plural(word))

输出

执行上述程序后,将生成以下输出:

The plural form of 'dog' is:  dogs

结论

在本文中,我们介绍了四种不同的方法来将给定单词从单数更改为复数。我们学习了如何使用pip命令安装模块。此外,我们还学习了如何从nltk下载数据。

更新于:2023年2月1日

4K+ 次浏览

开启您的职业生涯

完成课程获得认证

开始学习
广告
© . All rights reserved.