Python Mapping
Python Mapping 只有一种:dictionary
dictionary 的 key
d = {"one": 1, "two": 2, "three": 3}
d = dict(one=1, two=2, three=3)
Python Mapping 只有一种:dictionary
dictionary 的 key
d = {"one": 1, "two": 2, "three": 3}
d = dict(one=1, two=2, three=3)