Any layout
- Layout is flexible
- Trailing comma is optional. It does not disturb us. Nor Python.
examples/lists/any_list2.py
more_stuff = [ 42, 3.14, True, None, "Foo Bar", ['another', 'list'], { 'a': 'Dictionary', 'language' : 'Python', }, ] print(more_stuff)
[42, 3.14, True, None, 'Foo Bar', ['another', 'list'], {'a': 'Dictionary', 'language': 'Python'}]