字典的镶嵌

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可以是任何的数据类型

  

以上是关于字典的镶嵌的主要内容,如果未能解决你的问题,请参考以下文章

Python数据类型 ——— 字典

python字典/字典的键值/字典属性的添加

python字典

我想从python中的字典字典中制作一个字典[重复]

python 18:字典的赋值

好好学python · 字典