Solved

Which of the Following Statements A), B) or C) Is

Question 12

Multiple Choice

Which of the following statements a) , b) or c) is false?


A) The json module's dumps function returns a Python string representation of an object in JSON format.
B) Using dumps with load, you can read JSON from a file and display it in a nicely indented format-sometimes called "pretty printing" the JSON.
C) When the dumps function call includes the indent keyword argument, as in with open('accounts.json', 'r') as accounts:
Print(json.dumps(json.load(accounts) , indent=4) )
The string contains newline characters and indentation for pretty printing-you also can use indent with the dump function when writing to a file:
D) All of the above statements are true.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions