python 列表 元組 字串

2022-06-22 21:12:14 字數 991 閱讀 3566

列表新增:

list.extend()

list.insert()

列表刪除:

list.remove()   #刪除某乙個元素

list.pop()  #刪除某乙個返回刪除的哪乙個,預設刪除最後乙個

del list()    #這是個語句也可以刪除整個元素,加括號刪除某乙個元素

列表分片

list[1:3]  #從第二個到第四個切割,並顯示出來

操作符(list1>list2 and list2>list1)

and  #邏輯操作符兩邊都相等才會返回true

in  #是否存在列表裡

not in

dir (list) 顯示list有哪些方法

list.count(123)  #看括號裡面出現了多少次

點後面是方法

list.index()  #找出索引的位置在哪,從0開始(括號中可以指定從哪個位置開始用,隔開即可)

list.revers  #反轉將元素

list.sort()#指定進行順序排序

list.sort(revers= true)  #相當於先排序再倒敘

list1=list2[:]  #拷貝列表要這樣拷貝才會真正拷貝乙份

函式記錄輸入數值的型別

type(a)

驗證數值的型別

isinstance(a,str)

函式:方法:

和類裡面的函式方法啥區別

字串格式化

位置引數:

" love .".format("i","fishc","com")

out[120]: 'i love fishc.com'

關鍵字引數:

" love .".format(a="i","b=fishc",c="com")

out[120]: 'i love fishc.com'

''.format(27.651,'gb')

out[7]: '27.7gb'

python列表 元組 字串

python中列表 元組 字串均為可迭代物件 lst 1 2,3 4 for i in lst print i,end print tu 1 2,3 4 for i in tu print i,end print str 1234 for i in str print i,end print 1 2...

字串,元組,列表

共異點 字串列表 元組拼接 a 1 b 2 a b a 1 b 2 a b a 1 b 2 a b 重複a 1 a 3 a 1 3 元組不可以重複 索引sr 123 sr 1 li 1 2 li 0 tp 1 2 tp 0 切片sr 123 sr 0 2 li 1 2 li 0 1 tp 1 2 t...

列表 元組 字串

容器資料型別 列表元組 字串1 列表 列表是有序集合,沒有固定大小,能夠儲存任意數量任意型別的 python 物件,語法為 元素1,元素2,元素n 關鍵點是 中括號 和 逗號 中括號 把所有元素綁在一起 逗號 將每個元素一一分開 2 元組 元組 定義語法為 元素1,元素2,元素n 小括號把所有元素綁...