当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。