概述:Python中这三种形式的定义相近,易于混淆,应注意区分. aDict={'a':1, 'b':2, 'c':3, 'd':4, 'e':5} aList=[1,2,3,4,5] aTuple=(1,2,3,4,5) 一.字典Dictionary 语法形式:aDict={'a':1, 'b':2, 'c':3, 'd':4, 'e':5} Python手册说明:https://docs.python.org/2.7/library/stdtypes.html#dict Dictionary…