The correct ones

Report a typo

From the code snippets below, select only those that are correct.

A)

from pprint import PrettyPrinter

pprint(data, indent=4, sort_dicts=False)

B)

from pprint import PrettyPrinter

pp = PrettyPrinter(indent=4, sort_dicts=False)
pp.pprint(data)

C)

from pprint import pprint

pp = PrettyPrinter(indent=4, sort_dicts=False)
pp.pprint(data)

D)

from pprint import pprint

pprint(data, indent=4, sort_dicts=False)

E)

from pprint import PrettyPrinter

pp = PrettyPrinter(data, indent=4, sort_dicts=False)
pp.pprint()
Select one or more options from the list
___

Create a free account to access the full topic