下面加粗的斜体部分代码的return语句部分dict+list是怎么运作的?单独调用加粗字体部分的函数为什么得不到结果?
>>> def fn(x, y):
... return x * 10 + y
...
>>> def char2num(s): #s是字符串类型
... return {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9}[s]
...
>>> reduce(fn, map(char2num, '13579'))
13579