Skip to content
CodeBook
Main Navigation
ToolBox
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
Dict 字典
#
Python
Copy code
dst = {"hello": "world"} print(dst) dst["hello"] = "CodeMax" print(dst)
dst = {"hello": "world"} print(dst) dst["hello"] = "CodeMax" print(dst)