list.append()是添加到列表末尾的明显选择。这是有关失踪人员的合理解释list.prepend()。假设我的清单很短并且对性能的关注可以忽略不计,
list.append()
list.prepend()
list.insert(0, x)
要么
list[0:0] = [x]
惯用的?
该s.insert(0, x)形式是最常见的。
s.insert(0, x)
无论何时,只要您看到它,也许就该考虑使用collections.deque而不是列表了。