Python中的 enchant.dict_exists()
Enchant
是Python中的一个模块,用于检查单词的拼写,给出正确单词的建议。此外,给出单词的反义词和同义词。它检查字典中是否存在单词。
附魔.dict_exists()
附魔enchant.dict_exists()
是enchant
模块的内置方法。它用于检查特定语言的字典的可用性。
Syntax : enchant.dict_exists(tag)
Parameter :
tag : the code of the language dictionary in string datatype
Returns : a boolean value, True if the dictionary exists, False if it does not exists
示例 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.
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。