#__author:"feng lin"
#date: 2018/8/24
list=["
瑪莎拉蒂
","法拉利
","蘭博基尼"]
print("
(0)"
,list)
#增加操作賓利"
)print("
(1)"
,list)
list1=list[1:3]
#切片原則,顧頭不顧尾
print("
(2)"
,list1)
list.insert(2,"
布加迪威航")
print("
(3)"
,list)
list.extend([
"北京現代
","奧迪
","寶馬"])
print("
(4)"
,list)
#刪除操作
new_list=list.pop()
print("
(5)"
,new_list,list)
now=list.pop(0)
print("
(6)"
,now,list)
list.remove(
"法拉利")
print("
(7)"
,list)
del list[0:2]
print("
(8)"
,list)
#清空操作
list.clear()
print("
(9)"
,list)
del list[0:1]
#公共方法
list1=[1,2,3,4,5,6,7,7,8,8,9]
long=len(list1)
(long)
num=list1.count("7"
(num)
print(list1.index(7))
#正向排序
list2=[1,3,7,2,4,5]#反轉
list2.reverse()
(list2)
#正向排序
list2.sort()
(list2)
#反向排序
list2.sort(reverse=true)
(list2)
#列表巢狀
list3=["
taibai
","長澤亞美
","新恆結衣
",['
sen','
xii','
laee']]
print(list3[1][3])
list3[2]=list3[2].replace('
新',"舊"
)print(list3)
Python基礎學習 列表
建立乙個列表,只要把逗號分隔的不同的資料項使用方括號括起來即可 list1 google runoob 1997,2000 list2 1,2,3,4,5 list3 a b c d 列表索引從0開始,列表可以進行擷取 組合等。使用下標索引來訪問列表中的值,並且可以切片 擷取部分內容 如下所示 li...
python 基礎學習筆記 列表
這是筆者的在python學習過程中的一些筆記,如有誤,還請諒解。列表 list 1.簡介my list 1 2 3 2,1,2,3 hello world 2.建立列表 通過來建立列表 my list 建立了乙個空列表 print my list type my list 列表儲存的資料,我們稱為元...
Python的列表學習基礎
四 遍歷列表 4.1 for迴圈 通過for迴圈來遍歷列表 語法for 變數 in 序列 遍歷的規則 塊 注意 for迴圈的 塊會執行多次,序列中有幾個元素就會執行幾次。每執行一次就會將序列中的乙個元素賦值給變數,所以我們可以通過變數來獲取列表中的元素 4.2 range start,stop st...