I have developed a python function. It returns a large object in one line (similar to the example, only ten times larger)
{'a':{'b':1,'c':2,'d':{'e':{'f':3}}}}
How do I make the returned object automatically come in formatted form? Like this:
{
'a': {
'b': 1,
'c': 2,
'd': {
'e': {
'f': 3
}
}
}
}