Python中的 enchant.get_enchant_version()
Enchant
是Python中的一个模块,用于检查单词的拼写,给出正确单词的建议。此外,给出单词的反义词和同义词。它检查字典中是否存在单词。
附魔.get_附魔版本()
enchant.get_enchant_version()
是enchant
模块的内置方法。它用于查看系统正在使用的enchant
模块的版本。
Syntax : enchant.get_enchant_version()
Parameter : Nothing
Returns : a string containing the enchant
version
示例 1:
# import the enchant module
import enchant
# printing the version
print(enchant.get_enchant_version())
输出 :
2.2.7
示例 2:附魔模块的版本也可以使用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 plugins
Called automatically when the Python library is imported when
required.
VERSION
2.2.7
FILE
c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\enchant\__init__.py
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。