python 初学 字典
Posted ryan-l
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 初学 字典相关的知识,希望对你有一定的参考价值。
empty_dict={} a_dict={‘one‘:1,‘two‘:2,‘three‘:3} print ("{}".format(a_dict)) #reverse output!!! #print ("{!s}".format(len(a_dict))) #print ("{}".format(a_dict[‘two‘])) a_new_dict=a_dict.copy() print ("{!s}".format(a_new_dict)) a_new1_dict=a_dict.copy() print("{!s}".format(a_new1_dict)) a_new2_dict=a_dict.copy() print("{!s}".format(a_new2_dict)) #output order!!!
为什么对a_dict的copy输出顺序与a_dict不同,而且a_dict本身输出也不是他本来的顺序?
以上是关于python 初学 字典的主要内容,如果未能解决你的问题,请参考以下文章