Python 字典 Dictionary len()方法
Python 字典 Dictionary len()方法
Python 字典(Dictionary) len() 函數計算字典元素個數,即鍵的總數。
語法
len()方法語法:
len(dict)
參數
- dict -- 要計算元素個數的字典。
返回值
返回字典的元素個數。
實例
以下實例展示了 len()函數的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7}; print "Length : %d" % len (dict)
以上實例輸出結果為:
Length : 2
相關文章
- Python 循環嵌套
- Python 集合
- Python 二叉樹
- Python 算法設計
- Python3 SMTP發送郵件
- Python File seek() 方法
- Python os.closerange() 方法
- Python os.getcwd() 方法
- Python os.openpty() 方法
- Python os.popen() 方法
- Python os.readlink() 方法
- Python os.symlink() 方法
- Python capitalize()方法
- Python ljust()方法
- Python rfind()方法
- Python rjust()方法
- Python swapcase()方法
- Python upper()方法
- Python List cmp()方法
- Python List min()方法