タイトルが十分明確であるかどうかわかりません。ディクショナリを使用してパートナーの値を印刷する方法
words = ['sense', 'The', 'makes', 'sentence', 'perfect', 'sense', 'now']
numbers = ['1', '2', '3', '4', '5', '6']
dictionary = dict(zip(numbers, words))
print(dictionary)
correctorder = ['2', '4', '7', '3', '5', '6']
私は単に文が理にかなっているように、私はcorrectorder配列を使用して辞書から特定の値を印刷することができます正確にどのように把握しようとしています。