Commit e1632de3 by BellCodeEditor

save project

parent 65ca8641
Showing with 7 additions and 0 deletions
......@@ -3,3 +3,9 @@ print(dict1["name"])
print(dict1["age"])
dict1["age"] = 20
print(dict1)
dict1['addres'] = "上海"
print(dict1)
if "age" in dict1:
print("存在")
else:
print("不存在")
\ No newline at end of file
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