Python Read Dictionary à partir du fichier
import ast
with open("/path/to/file", "r") as data:
dictionary = ast.literal_eval(data.read())
Troubled Teira
import ast
with open("/path/to/file", "r") as data:
dictionary = ast.literal_eval(data.read())