Enchant是python中的一个模块,用于检查单词的拼写,并提供纠正单词的建议。另外,给出单词的反义词和同义词。它检查字典中是否存在单词。
enchant .get_enchant_version()
enchant.get_enchant_version()
是一种内置方法enchant
模块。它用于查看版本enchant
系统正在使用的模块。
用法: enchant.get_enchant_version()
参数:没有
返回:包含enchant
版
范例1:
# import the enchant module
import enchant
# printing the version
print(enchant.get_enchant_version())
输出:
2.2.7
范例2: enchant 模块的版本也可以使用help()
方法。
# import the enchant module
import enchant
# using the help() method
help(enchant)
输出:实际输出为574行。这里仅显示包含版本的最后几行。
set_prefix_dir(path)
Set the prefix used by the Enchant library to find its pluginsCalled automatically when the Python library is imported when
required.VERSION
2.2.7FILE
c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\enchant\__init__.py
相关用法
注:本文由纯净天空筛选整理自Yash_R大神的英文原创作品 enchant.get_enchant_version() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。