len(tuple)
tuple -- 這對於要被計數的元素數量的元組。
#!/usr/bin/python3 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