【python小甲魚1】序列
阿新 • • 發佈:2018-12-18
#1list-把。。。變成列表[] a = list() print(a) b = 'I LOVE WANGDI'#序列 b = list(b) print(b) c = (1,1,2,3,5,8,13,21,34)#這是元組哦 c = list(c)#把元組變成列表了 print(c) #2tuple——把一個可迭代物件變成元組 tuple(c) print(c) #3max、min——返回序列或者引數值中的最大(小)值 max(1,2,3) max(b) chartes = '1234567890' min(chartes) tuple1 = (1,2,3,4,5,6) min(tuple1) #4sum——適用於元組,列表,不適用與字串‘125’ #5sorted——從小到大排序,適用於列表,元組 #6reversed——逆轉!但是注意用法哈: list(reversed(tuple1)) #enumerate——將列表元素的每個索引值和他組成元組 list(enumerate(tuple1)) #zip——下面的結果:[(1, 7), (23, 5), (4, 8), (5, 32)] a = [1,23,4,5,6,7] b = [7,5,8,32] print(list(zip(a,b)))