`d = {key: value for (key, value) in sequence}` 不如直接 `d = dict(sequence)`
d = {key: value for (key, value) in sequence}不如直接
d = dict(sequence)