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