進階Python中的列表,元組,集合,字典!

一.列表的其他特性 list.append(x) 在列表的末尾添加一個元素。相當於 a[len(a):] = [x] 。 list.extend(iterable) 使用可迭代對象中的所有元素來擴展列表。相當於 a[len(a):] = iterable 。 list.insert(i, x) 在給定的位置插入一個元素。第一個參數是要插入的元素的索引,所以 a.insert(0, x) 插入列表頭
相關文章
相關標籤/搜索