我需要返回列表中单词相似度的最小平均值(我可以这样做),但我不知道如何将单词字符串值分配给平均值,例如在列表{{1}中当然兄弟会有最少的单词比较值,因此我需要将['my', 'bro', 'myline']
与比较值一起返回(我已经知道如何...只需要知道如何在嵌套循环中赋值) 。
'bro'
答案 0 :(得分:0)
from operator import itemgetter
# Make the word list.
word_list = ['my', 'bro', 'myline']
# Do your code here to create ave_list
# Fetch the min index and min value of ave_list
min_index, minvalue = min(enumerate(ave_list), key = itemgetter(1) )
# Now get the word at the same min index location.
min_word = word_list[min_index]