Python Idioms
tangarts.github.io › python-idiomspython-idioms python-idioms 2020-03-22 A collection of python idioms and design patterns What idioms should I use to make my code easier to read? Build strings as a list and use ''.join at the end.p Join is a string method called on the separator, not the list.