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.