python创建字典多种方式

可以快速上手的开发文档

#python创建字典多种方式
python创建字典多种方式

Python创建字典的八种方式

1.创建空字典>>>dic={}>>>type(dic)<type'dict'>2.直接赋值创建>>>dic={'spam':1,..