ruby中的Hash用法
grades = Hash.new
grades["Dorothy Doe"] = 9
参考:http://ruby-doc.org/core-2.0/Hash.htm...
python中的dict用法
>>> a = dict(one=1, two=2, three=3)
>>> b = {'one': 1, 'two': 2, 'three': 3}
>>> c = dict(zip(['one', 'two', 'three'], [1, 2, 3]))
>>> d = dict([('two', 2), ('one', 1), ('three', 3)])
>>> e = dict({'three': 3, 'one': 1, 'two': 2})
>>> a == b == c == d == e
True
参考:http://docs.python.org/2/library/stdt...
问题 如果想像ruby那样进行这样的操作:
grades["a"] << 1
grades["b"] << 2
grades["c"] << 3
...
python怎么做?
如果用这种方式:
b = {'one': 1, 'two': 2, 'three': 3}
值是唯一的,但想要'one','two','three'的数组,那里面装很多不同的值。