Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 20)
20.
How can you write a dictionary to a file named "data.json" in JSON format?
write_json("data.json", {"key": "value"})
json.write("data.json", {"key": "value"})
with open("data.json", "w") as file:
    json.dump({"key": "value"}, file)
file.write_json("data.json", {"key": "value"})
Answer: Option
Explanation:
Using 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.