Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 59)
59.
How can you write a dictionary to a JSON file named "config.json"?
write_json("config.json", {"key": "value"})
with open("config.json", "w") as file:
    write_json(file, {"key": "value"})
json.write("config.json", {"key": "value"})
with open("config.json", "w") as file:
    json.dump({"key": "value"}, file)
Answer: Option
Explanation:
Using open() in write mode and json.dump() to write a dictionary to a JSON file.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.