About Being Precise

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

1
2
3
4
5
6
my_list = [
    "a"
    "b",
    "c",
]
# ['ab', 'c']

Tips and Tricks Programming Python 3