位置:首頁 > 腳本語言 > Python教學 > Python Tuple.len()方法

Python Tuple.len()方法

len()方法返回在元組中元素的數量。

語法

以下是len()方法的語法:

len(tuple)

參數

  • tuple -- 這是一個元組要被計算元素的數量。

返回值

此方法返回元組中元素的數量。

例子

下麵的例子顯示了len()方法的使用。

#!/usr/bin/python

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

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

當我們運行上麵的程序,它會產生以下結果:

First tuple length :  3
Second tuple length :  2