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


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


Enchant是python中的一個模塊,用於檢查單詞的拚寫,並提供糾正單詞的建議。另外,給出單詞的反義詞和同義詞。它檢查字典中是否存在單詞。

enchant .dict_exists()

enchant.dict_exists()是一種內置方法enchant模塊。它用於檢查特定語言詞典的可用性。

用法: enchant.dict_exists(tag) 

參數:
tag:字符串數據類型中語言詞典的代碼

返回:布爾值,如果字典存在,則為True;如果字典不存在,則為False



範例1:什麽時候enchant.dict_exists()返回True。
# import the enchant module 
import enchant 
  
# American English dictionary 
tag = "en_US"
  
# check whether American English(en_US)  
# dictionary exists or not 
exists = enchant.dict_exists(tag) 
if exists == True:
    print("The dictionary for " + tag + " exists.") 
else:
    print("The dictionary for " + tag + " does not exists.")

輸出:

The dictionary for en_US exists.

範例2:什麽時候enchant.dict_exists()返回False。

# import the enchant module 
import enchant 
  
# Hindi dictionary 
tag = "hi_IN"
  
# check whether Hindi(hi_IN)  
# dictionary exists or not 
exists = enchant.dict_exists(tag) 
if exists == True:
    print("The dictionary for " + tag + " exists.") 
else:
    print("The dictionary for " + tag + " does not exists.")

輸出:

The dictionary for hi_IN does not exists.



相關用法


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