當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python enchant.get_enchant_version()用法及代碼示例


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 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

相關用法


注:本文由純淨天空篩選整理自Yash_R大神的英文原創作品 enchant.get_enchant_version() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。