美文网首页
将遍历出的结果字符串装在列表

将遍历出的结果字符串装在列表

作者: 月夜星空下 | 来源:发表于2020-02-07 18:08 被阅读0次
    from Keyword_extraction import The_original_title
    Key_word = []
    for i in The_original_title:
        from dtl_nlp import max_length_words
        ll = max_length_words(i)
        Key_word.append(ll)
    keyword_all = Key_word
    print(keyword_all)
    

    相关文章

      网友评论

          本文标题:将遍历出的结果字符串装在列表

          本文链接:https://www.haomeiwen.com/subject/mtkvxhtx.html