怎么理解Python中的列表,元组,字典

如果你是一个Java开发者,可以做如下类比:

Python Java
列表list 列表List,例如ArrayList,LinkedList
元组tuple 数组[],例如 int[] = new int[2]
字典dict Map,例如HashMap
集合set 集合Set,例如HashSet

你可能感兴趣的:(python,python,开发语言,java)