精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python 字典 Dictionary len()方法

Python 字典 Dictionary len()方法

Python 字典 DictionaryPython 字典 Dictionary

Python 字典(Dictionary) len() 函數計算字典元素個數,即鍵的總數。

 

語法

len()方法語法:

len(dict)

 

參數

  • dict -- 要計算元素個數的字典。

 

返回值

返回字典的元素個數。

 

實例

以下實例展示了 len()函數的使用方法:

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7};
print "Length : %d" % len (dict)

以上實例輸出結果為:

Length : 2

Python 字典 DictionaryPython 字典 Dictionary

下一節:Python 字典(Dictionary) str()方法

Python 教程

相關文章