The json.load() method (without "s" in "load") can read a file directly: import json with open('strings.json') as f: d = json.load(f) ...
確定! 回上一頁