必備知識:元組的內(nèi)置函數(shù)【每日一個(gè)知識點(diǎn)第183期-Python】
Python元組包含了以下內(nèi)置函數(shù)
序號 | 方法及描述 | 實(shí)例 |
---|---|---|
1 | len(tuple) 計(jì)算元組元素個(gè)數(shù)。 |
>>> tuple1 = ('Google', 'Runoob', 'Taobao') >>> len(tuple1) 3 >>>
|
2 | max(tuple) 返回元組中元素最大值。 | >>> tuple2 = ('5', '4', '8')>>> max(tuple2)'8'>>>
|
3 | min(tuple) 返回元組中元素最小值。 | >>> tuple2 = ('5', '4', '8')>>> min(tuple2)'4'>>>
|
4 | tuple(seq) 將列表轉(zhuǎn)換為元組。 | >>> list1= ['Google', 'Taobao', 'Runoob', 'Baidu']>>> tuple1=tuple(list1)>>> tuple1('Google', 'Taobao', 'Runoob', 'Baidu')
|
《Python入門每日一個(gè)知識點(diǎn)》欄目是馬哥教育Python年薪20萬+的學(xué)員社群特別發(fā)起,分享Python工具、Python語法、Python項(xiàng)目等知識點(diǎn),幫助大家快速的了解Python學(xué)習(xí),快速步入Python高薪的快車道。
http://haohuigou.com/73198.html