list.append()
is the obvious choice for adding to the end of a list. Here’s a reasonable explanation for the missing list.prepend()
. Assuming my list is short and performance concerns are negligible, is
list.insert(0, x)
or
list[0:0] = [x]
idiomatic?