python 中元組,字串,列表的拆包,裝包

2021-09-26 07:49:51 字數 1390 閱讀 8049

遇見第一*裝包,遇見第二個*拆包

t1=(4,7,3)

a,b,c=t1

print(a,b,c)# 輸出4 7 3

a=t1

print(a) #輸出 (4,7,3)

#x,y,z=(6,)#not enough values to unpack

#變數個數與元祖個數不一致

t1=(2,5,8,9,7)

a,*_,c=t1

print(a,c,_)#輸出結果 2 7[5,8,9]

a,c,*_=t1

print(a,c,_)#輸出結果2 5 [8,9,7]

a,b,*c=t1

print(a,b,c)#輸出結果2 5 [8,9,7]

t1=(9,)

a,*b=t1

print(a,b)#輸出結果 9 *b表示位置個數 0個元素對應空列表 多個元素逐個放到列表

t1=(9,4,8,6)

a,*b=t1

print(a,b)#輸出結果 9 [4,8,6] *b表示位置個數 0個元素對應空列表 多個元素逐個放到列表

print(*b)#輸出結果 4 8 6

'''字串 x,y,*z='hello' x='h' y='e' z=['l','l','o']

'''t1=(4,7,3)

a,b,c=t1

print(a,b,c)# 輸出4 7 3

a=t1

print(a) #輸出 (4,7,3)

#x,y,z=(6,)#not enough values to unpack

#變數個數與元組個數不一致

t1=(2,5,8,9,7)

a,*_,c=t1

print(a,c,_)#輸出結果 2 7[5,8,9]

a,c,*_=t1

print(a,c,_)#輸出結果2 5 [8,9,7]

a,b,*c=t1

print(a,b,c)#輸出結果2 5 [8,9,7]

t1=(9,)

a,*b=t1

print(a,b)#輸出結果 9 *b表示位置個數 0個元素對應空列表 多個元素逐個放到列表

t1=(9,4,8,6)

a,*b=t1

print(a,b)#輸出結果 9 [4,8,6] *b表示位置個數 0個元素對應空列表 多個元素逐個放到列表

print(*b)#輸出結果 4 8 6

'''字串 x,y,*z='hello' x='h' y='e' z=['l','l','o']

'''

遇見第乙個裝,遇見第二個拆

Python 字串,列表,元組

一 字串 1.兩個串拼接為乙個羊肉串。a wo cool 乙個 號相當於紅柳,將兩個字串,串為紅柳大串 b wo cool 該寫法中間可不加空格,為了審美,求求你加乙個吧 列印結果 wocool 2.end print執行後自動換行,如果不想換行或者結果後加其他的,以下為輸出變數a後。print a...

字串 列表 元組

字串常用方法 s my name is jike.i am 18 print s.upper 全部轉成大寫 print s.lower 全部轉成小寫 print s.title 將字串中單詞首字母大寫 print s.strip 去除兩邊的空格 print s.count m 統計字元出現的次數 p...

字串,列表,元組

1,字串 str1 hello world print len str1 計算字串的長度 print str1.capitalize 首字母大寫 print str1.upper 所有字母大寫 print str1.lower 所有字母小寫 print str1.find ll 從字串中查詢子串的位...