Oddbean new post about | logout
 #python #notetoself when passing a list after appending an item to it to a function like join, run the append function separately. the result of append() is in place mutation of original list but not the list itself, so passing append() inside join() gives it nothing, None...not the modified list as I expect.