文件名称:循环和字典-三菱数控指导手册api
文件大小:1.91MB
文件格式:PDF
更新时间:2024-07-03 00:32:32
python
11.3 循环和字典 在 for循环中使用字典会遍历其所有的键。例如,下面的 print_hist会打印所有键与对 应的值:� def print_hist(h): for c in h: print(c, h[c]) � 输出类似:� >>> h = histogram('parrot ') >>> print_hist(h) a 1 p 1 r 2 t 1 o 1 � 重申一遍,字典中的键是无序的。如果要以确定的顺序遍历字典,你可以使用内建方法 sorted:� >>> for key in sorted(h): ... print(key , h[key]) a 1 o 1 p 1 r 2 t 1 �