Python的列表是什麼
一、列表格式
列表名 = [列表元素1,列表元素2,列表元素3,… ]
說明:
1.列表元素之間是有順序的,也是透過下標表示,第一個元素的小標為0。
2.列表元素可以不是同種型別,任何型別都行。
3.列表通常當做容器,用來存放多個元素。
二、列表的遍歷迴圈
for迴圈遍歷列表
nameList = ["張三","李四","王五","趙六"] for name in nameList: print(name)
執行結果如下:
張三 李四 王五 趙六
while迴圈遍歷列表
nameList = ["張三","李四","王五","趙六"] i= 0 while i<len(nameList): print(nameList[i]) i+=1
執行結果如下:
張三 李四 王五 趙六
三、列表的相關操作
1、append:透過append可以向列表新增元素
nameList = ["張三","李四","王五","趙六"] print(nameList) print("----------------分界線-----------------") nameList.append("侯七") print(nameList)
執行結果如下:
['張三', '李四', '王五', '趙六'] ----------------分界線----------------- ['張三', '李四', '王五', '趙六', '侯七']
2、extend:可以將另一個集合中的元素逐一新增到列表中
listA = [1,2] listB = [3,4] listA.extend(listB) print(listA)
執行結果為:[1, 2, 3, 4]
3、insert(index, object) 在指定位置index前插入元素object
numList = [1,2,3,4] numList.insert(0,"a") print(numList)
執行結果為:['a', 1, 2, 3, 4]
相關推薦:《》
4、透過下標修改元素
numList = [1,2,3,4] numList[1] = "A" print(numList)
執行結果為:[1, 'A', 3, 4]
5、查詢元素
in(存在),如果存在那麼結果為true,否則為false
not in(不存在),如果不存在那麼結果為true,否則false
numList = [1,2,3,4] if 2 in numList: print("2在numList裡面") else: print("2不在numList裡面")
執行結果為:2在numList裡面
6、index和count:用法和字串中差不多
strList = ['a','b','c','d','a','b','b'] ind = strList.index('b') con = strList.count('b') print(ind) print(con)
列印結果為:0和3。index也是會找到第一個滿足情況的後面就不會再找了
7、刪除元素
del:根據下標進行刪除
pop:刪除最後一個元素
remove:根據元素的值進行刪除
nameList = ["張三","李四","王五","趙六","侯七"] del nameList[2] print(nameList)
執行結果為:['張三', '李四', '趙六', '侯七']
nameList = ["張三","李四","王五","趙六","侯七"] nameList.pop() print(nameList)
執行結果為:['張三', '李四', '王五', '趙六']
nameList = ["張三","李四","王五","趙六","侯七"] nameList.remove("李四") print(nameList)
執行結果為:['張三', '王五', '趙六', '侯七']
8、排序(sort,reverse)
numList = [1,4,3,5,2] numList.reverse() print(numList)
執行結果為:[2, 5, 3, 4, 1],倒序
numList = [1,4,3,5,2] numList.sort() print(numList)
執行結果為:[1, 2, 3, 4, 5],升序
numList = [1,4,3,5,2] numList.sort(reverse = True) print(numList)
執行結果為:[5, 4, 3, 2, 1],降序
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1020/viewspace-2837388/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python列表切片是什麼Python
- python列表推導式是什麼?Python
- Python 列表和元組的區別是什麼?Python
- HTML列表是什麼?HTML
- python列表有什麼特點Python
- 列表在python有什麼用Python
- Python是什麼意思?Python幹什麼用的?Python
- Python列表、元組、集合、字典的區別是什麼?入門知識!Python
- python列表排序演算法有幾種?分為是什麼?Python排序演算法
- spyder是python的什麼Python
- 什麼是python?python有什麼用途?Python
- 什麼是PythonPython
- Python是什麼?為什麼要掌握python?Python
- Python是什麼意思?Python有什麼用?Python
- Python是什麼語言?Python底層語言是什麼?Python
- python中的input是什麼Python
- python中的字典是什麼Python
- 什麼是Python?Python為什麼這麼搶手?Python
- python arange是什麼Python
- python字典是什麼Python
- python re是什麼?Python
- python是什麼蛇Python
- python title是什麼Python
- python 是什麼意思Python
- python rabbitmq是什麼PythonMQ
- python wheel是什麼Python
- Python中什麼是閉包?閉包的好處是什麼?Python
- Python是什麼?為什麼Python受歡迎?Python
- python中的列表和元組有什麼區別Python
- python是什麼?python熱門的原因!Python
- Python是什麼?為什麼這麼搶手?Python
- 什麼是程式語言,什麼是Python直譯器Python
- Python到底是什麼?為什麼要學Python?Python
- Python中的mechanize模組是什麼?Python
- python的跳脫字元是什麼Python字元
- Python中的作用域是什麼Python
- python is和==的區別是什麼?Python
- Python的集合與列表有什麼區別?Python學習教程Python