python中元組的常用方法及應用場景

2021-10-05 06:32:59 字數 1359 閱讀 1627

1.元組常用方法

t =(1

,1.2

,'python'

,true

)print

(t.count(

'python'

)) 統計python在元組中的數量.count(

)計數器函式

print

(t.index(

'python'

)) 找出元組中python元素的下標

列印結果

1 數量

2 下標

t =(1,

1.2,

'python'

,true

)print

(t.count(

true))

print

(t.index(1)

)20

2.元組應用場景

1.sort()間接排序

scores =(78

,89,45

,98,100

) 定義元組

scoresli =

list

(scores) 元組轉換成列表

scoresli.sort(

) 使用sort()函式排序列表中的元素

print

(scoresli)

列印結果[45

,78,89

,98,100]2

.sorted

()直接排序

scores =(78

,89,45

,98,100

)scores =

sorted

(scores)

print

(scores)

列印結果[45

,78,89

,98,100

]

學生成績管理

指定scores對應多個變數,

mincorse:最小值,*middlesscores對應多個元素,manxscores對應最大值

scores =(78

,89,45

,98,100

)scores =

sorted

(scores) 直接排序預設從小到大

mincores,

*middlesscores,manxscores = scores

print

(mincores)

列印結果45[

78,89,

98]100最終成績:88.33

Python中元組的基礎介紹及常用操作總結

目錄 python的元組與列表類似,不同之處在於元組的元素不能修改。元組使用小括號,列表使用方括號。元組建立很簡單,只需要在括號中新增元素,並使用逗號隔開即可。元組的格式 tup a b c d 元組可以使用下標索引來訪問元組中的值,下標索引從0開始 例如 tup a b c d print tup...

python中元組的簡介

t 1,2.3,true,star print t print type t 執行結果為 1,2.3,true,star t1 1,2,3 4 print t1 執行結果為 1,2,3,4 4 t2 hello print type t2 執行結果為 allowusers root westos r...

Python中元組的函式

定義乙個帶欄位名的元組 from collections import namedtuple user namedtuple user name age user user lisi male 12 print user user name lisi male age 12 fields 元組的屬性...