2017-08-24T07:47:57
Join List of Names with Python
# Simple List
', '.join([author.name for author in authors])
# Django
', '.join([author.name for author in book.author_set.all()])
Both will output "Author Name, Author 2 Name, ..., Author x Name"