python字典和集合
构造方法与字典推导式>>> a = dict(one=1, two=2, three=3) #法一>>> b = {'one': 1, 'two': 2, 'three': 3} #法二>>> c = dict(zip(['one', 'two', 'three'], [1, 2, 3])) #法三>...