Python Tuple 元組 len()方法
Python Tuple 元組 len()方法
Python 元組 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
相關文章
- Python OS 文件/目錄方法
- Python 面向對象
- Python 分而治之
- Python 算法類
- Python3 網絡編程
- Python floor() 函數
- Python log() 函數
- Python choice() 函數
- Python File readlines() 方法
- Python os.getcwd() 方法
- Python os.makedirs() 方法
- Python os.tcgetpgrp() 方法
- Python os.tempnam() 方法
- Python center()方法
- Python List insert()方法
- Python 字典 Dictionary str()方法
- Python 字典 Dictionary clear()方法
- Python 字典 Dictionary keys()方法
- Python Tuple 元組 min()方法
- Python time sleep()方法