Python/gloss python dictionary length

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字典长度

字典长度

要确定字典中有多少项(键值对),请使用 len() 方法。

打印字典中的项目数:

  print(len(thisdict))