Python 字典 Dictionary len()方法
Python 字典 Dictionary len()方法
Python 字典(Dictionary) len() 函數(shù)計(jì)算字典元素個(gè)數(shù),即鍵的總數(shù)。
語(yǔ)法
len()方法語(yǔ)法:
len(dict)
參數(shù)
- dict -- 要計(jì)算元素個(gè)數(shù)的字典。
返回值
返回字典的元素個(gè)數(shù)。
實(shí)例
以下實(shí)例展示了 len()函數(shù)的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7}; print "Length : %d" % len (dict)
以上實(shí)例輸出結(jié)果為:
Length : 2
相關(guān)文章
- Python 循環(huán)嵌套
- Python 集合
- Python 二叉樹(shù)
- Python 算法設(shè)計(jì)
- Python3 SMTP發(fā)送郵件
- 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()方法