Python “best formatting practice” for lists, dictionary, etc
I have been looking over the Python documentation for code formatting best practice for large lists and dictionaries, for example, something = {'foo' : 'bar', 'foo2' : 'bar2', 'foo3' : 'bar3'..... 200 chars wide, etc..} or something = {'foo' : 'bar', 'foo2' : 'bar2', 'foo3' : 'bar3', ... } or something = { 'foo' : 'bar', 'foo2' : 'bar2', 'foo3' : 'bar3', ... } How do I handle deep nesting of lists/dictionaries? My preferred way is: something = {'foo': 'bar', 'foo2': 'bar2', 'foo3': 'bar3', ... 'fooN': 'barN'} danlei aaronasterling's indentation style is what I prefer. This, and several other