Commit dc62fa59 by BellCodeEditor

save project

parent a6b2826b
Showing with 15 additions and 0 deletions
dict={"age":10,"age1":20,20:30}
print(dict)
dict={"age":10,"age1":20,"age2":30,"age3":40}
print(dict["age2"])
dict["age1"]=10
dict["age2"]="abc"
print("oid",dict)
dict["add"]=25
print("new",dict)
del age_dict["age1"]
print(age_dict)
age_dict.clear()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment