Python Tuple(元組) len()方法

2018-09-22 07:25 更新

Python Tuple(元組) len()方法


描述

Python 元組 len() 函數(shù)計(jì)算元組元素個(gè)數(shù)。

語法

len()方法語法:

len(tuple1, tuple2)

參數(shù)

  • tuple -- 要計(jì)算的元組。

返回值

函數(shù)返回元組元素個(gè)數(shù)。

實(shí)例

以下實(shí)例展示了 len()函數(shù)的使用方法:

#!/usr/bin/python

tuple1, tuple2 = (123, 'xyz', 'zara'), (456, 'abc')

print "First tuple length : ", len(tuple1);
print "Second tuple length : ", len(tuple2);

以上實(shí)例輸出結(jié)果如下:

First tuple length :  3
Second tuple length :  2
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)