Chargez un dictionnaire à partir du fichier en python en utilisant la fonction de chargement du module Pickle

import pickle

with open("myDictionary.pkl", "wb") as tf:
    new_dict = pickle.load(tf)

print(new_dict)
Coderunner