list = [10,1.34,34, "hello",true]
# list.insert(index.e):把元素e新增到索引為index的位置
list.insert(1,"anzhuo")
print(list)
# 2修改的方法,列表名[索引] = 資料
list[0] = "python"
print(list)
# 3刪除的方法
# list.remove (資料的方法)
# 如果列表中有重複的元素,預設刪除的第一次出現的那個元素
# 如果刪除的出局在列表中不存在,就報錯了
# list.remove("python3") //報錯了
# list.pop()方法
list.pop(2) 空的時候預設刪除最後乙個元素,指定刪除索引的元素,
print(list)
# list.clear()把列表清空,刪除全部元素
list.clear()
print(list)
列表常用方法
列表 name who where how 1.切片 左閉右開 name name name 0 4 who 2.追加 3.插入 name.insert 1,loser who loser where how 4.修改 name 1 victor who victor how 5.刪除 name.r...
python列表的常用方法
列表的一些基本操作 方法1 list.count 統計 list 6,3,4,5,6,7,8,4 print list.count 4 統計4這個元素在列表中出現的次數 方法3 list.extend 擴充套件列表 list 1,2,3 list1 4,5 list.extend list1 擴充套...
list列表常用方法
好多都走馬觀花過去了.發現不常用的方法不太記得了.複習一下,鞏固下記憶.python內建資料型別列表 list list 列表 是一種有序的集合,可以隨時新增和刪除其中的元素 所以列表是可迭代物件 list google runoob google runoob 2000 list google r...