字典的镶嵌
Posted gz1215-228513-chichy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字典的镶嵌相关的知识,希望对你有一定的参考价值。
#字典的镶嵌 dic="name":["apple","banana","grape"], "information":1:"sweet",2:"delisious",3:"sour", "hobby":"fruit", "age":18 print(dic) print(dic["name"][0].upper()) dic["name"].append("red grape") print(dic) dic["age"]=99 print(dic) dic["information"][4]="I like it" print(dic["information"][4]) #字典的K值是不可变数据类型:str,tuple,int,Bool #而value可以是任何的数据类型
以上是关于字典的镶嵌的主要内容,如果未能解决你的问题,请参考以下文章