About Being Precise

In a list of strings one per line in Python, don't miss commas at the end of lines:

my_list = [
    "a"
    "b",
    "c",
]
# ['ab', 'c']

Tips and Tricks Programming Python 3