📜  python 数据结构 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:19.937000             🧑  作者: Mango

代码示例2
list = [same as array with different features] 
array = [23, 'arrayItem', True, ['Hi', 34, False] ]
dictionary = {'key' : 'value'}
object = class testObj:
tuple = ( "a", "b", "c", "d" ); #same as list but non-changable