I would like to know if there is a better way to print all objects in a Python list than this :
myList = [Person(\"Foo\"), Person(\"Bar\")] print(\"\\n\".joi
[print(a) for a in list] will give a bunch of None types at the end though it prints out all the items
[print(a) for a in list]