摘要: from difflib import SequenceMatcher def text_similar_rate(text1, text2): """ :param text1: 文本1 :param text2: 文本2 :return: 相似度 """ return SequenceMatch 阅读全文
posted @ 2022-10-28 17:20 不能说的秘密 阅读(52) 评论(0) 推荐(0) 编辑