>> temp=(1) >>> temp 1 >>> type(temp) >>> temp2=1,2,3,4,5 >>> temp2 (1..."/>
您好,登錄后才能下訂單哦!
元祖的創(chuàng)建
元祖創(chuàng)建很簡單,只需要在括號中添加元素,并使用逗號隔開即可。
>>> temp=(1) >>> temp 1 >>> type(temp) <class 'int'>
>>> temp2=1,2,3,4,5 >>> temp2 (1, 2, 3, 4, 5) >>> type(temp2) <class 'tuple'>
>>> temp=[] >>> type(temp) <class 'list'>
>>> temp=() >>> type(temp) <class 'tuple'>
>>> temp=(1,) >>> temp (1,) >>> type(temp) <class 'tuple'>
對元組各個元素進(jìn)行命名
1,通過對元組索引值的命名
2,通過標(biāo)準(zhǔn)庫中的collections.nametuple
替代內(nèi)置touple
通過對元組索引值的命名
好比在c中的defined詳細(xì)見代碼
name,gender,age = range(3) student = ("ruioniao","man","19") student["name"] student["age"] student["gender"] #輸出 #"ruoniao" #19 #man
使用標(biāo)準(zhǔn)庫中collections.nametuple
代替內(nèi)置的tuple
s這個變量名可以直接通過屬性方式訪問
Student是namedtuple的名稱,后面的列表是其元素創(chuàng)建時還可以
s= Student(name="ruoniao",age="19",sex="man") #輸出Student(name='ruoniao', age='19', sex='man')
可以通過‘點(diǎn)'像類訪問屬性那樣進(jìn)行訪問
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。