特定の文字列を見つけるために検索している大きな辞書があります。ディクショナリのキーは数値で、値はタプルです。大文字と小文字を区別しない検索を使用して辞書をループし、関連するフレーズを含むキーを取得して新しいリストに追加する関数を作成するにはどうすればよいですか? この新しいリスト [match] を、情報を出力するために作成した後続の関数 (show) で使用したいと思います。
私のコードは次のようになります。
dict = {
1 : (value,value,value),
2 : (value,value,value),
so on...
}
# searches dict, criteria determines whether search is for str() or int(), phrase is string I am searching for
def search(criteria,phrase):
enter code here
# prints new list
def show(match):