一、字典的创建字典的字面量创建:my_dict = {"name": "John Doe", "age": 30, "city": "New York"}字典的内置函数创建:my_dict = dict(name="John Doe", a...