def wrong_word(input_word,input_example):
'''
input_word表示输入的文本
input_example为指定的错别字
'''
fileA = open(input_example, 'r', encoding="utf-8")
fileB=input_word
#fileB = open(input_word,'r',encoding="utf-8").readlines()
result =
python文本错别字检测
最新推荐文章于 2025-04-01 16:04:56 发布