私の質問は、定義した単語リスト内の単語を word_list.txt ファイル全体でより高速に検索できるように、このコードを改善できるかどうかです。ファイルを適切なデータ構造に配置することで、14 ワードすべてに対してファイルを 1 回反復することで、これを行う方法があると言われています。
word_list = ['serve','rival','lovely','caveat','devote',\
'irving','livery','selves','latvian','saviour',\
'observe','octavian','dovetail','Levantine']
def sorted_word(word):
"""This return the sorted word"""
list_chars = list(word)
list_chars.sort()
word_sort = ''.join(list_chars)
return word_sort
print("Please wait for a few moment...")
print()
#Create a empty dictionary to store our word and the anagrams
dictionary = {}
for words in word_list:
value = [] #Create an empty list for values for the key
individual_word_string = words.lower()
for word in open ('word_list.txt'):
word1 = word.strip().lower() #Use for comparing
#When sorted words are the same, update the dictionary
if sorted_word(individual_word_string) == sorted_word(word1):
if word1[0] == 'v':
value.append(word.strip()) #Print original word in word_list
tempDict = {individual_word_string:value}
dictionary.update(tempDict)
#Print dictionary
for key,value in dictionary.items():
print("{:<10} = {:<}".format(key,value))
新規ユーザー制限のため、結果の画像を投稿できませんでした。ちなみに、結果は単語ごとに v で始まるアナグラムを出力するはずです。このコードを改善するための助けをいただければ幸いです。