Python學習之序列

2022-08-25 16:24:21 字數 852 閱讀 9422

『』』

a = list()

a 返回 [ ]

b = 『i love you』

b = list(b)

b 返回 [『i』, 』 ', 『l』, 『o』, 『v』, 『e』, 』 ', 『y』, 『o』, 『u』]

#tuple ([iterable]) 把乙個可迭代物件轉換為元組

『』』max(b) 返回 v 此處是比較的 是 ascii 碼值

members = [1,18,13,0,-98,34,54,76,32]

max(members) 返回 76

chars = 『1234567890』

min(chars) 返回 『0』 此處也是比較的 ascii碼

tuple1 = (1,2,3,4,5,6,7,8,9,0)

max(tuple1) 返回9

『』』list1 = 1,1,2,3,5,8,13,21,34

sum(list1) 返回 88

sum(list1,2) 返回90 相當於加 2

字串型別無法實現 sum()操作

『』』每乙個元素都變成了乙個元組,元組前面加的列表每乙個元素的index值(索引值),將其插入

『』』

a = [1,2,3,4,5,6,7,8]

b = [4,5,6,7,8]

zip(a,b)

list(zip(a,b))

[(1, 4), (2, 5), (3, 6), (4, 7), (5, 8)]

注意:此處有短板效應,b只有5個引數,a有8個,

Python學習 序列之通用操作

最近準備系統學習python,為了以後能及時查詢到,先記錄下.先說下啥叫序列,之前在用,感覺這個概念有個模糊,今天特意看了下,序列是python中最基本的資料結構,序列中的每乙個元素都被分配乙個序號,即元素的位置,也成為索引。類似於 陣列 python中包含6種內建序列,即列表,元組,字串,unic...

python學習 序列

例9.5 使用序列 usr bin python filename seq.py shoplist mango carrot banana indexing or subscription operation print item 0 is shoplist 0 print item 1 is sh...

python生序列表 python的序列之列表二

注 本文測試環境為 python2.7 注 本文主要介紹列表的通用方法 測試list list1 1,2,3,4 insert方法 方法解釋 在指定位置插入物件 引數 引數1 index 引數2 object 示例 list1.insert 1,1 在列表末尾插入物件 list1.insert 0,...