#!/usr/local/python # -*- coding:utf-8 -*-user_dict = {'python': 23, 'Python': 51, '机器':10, 'PYTHON': 12, '机器人': 14, 'py':8, 'Py':9} req_dict, tmp_dict = {}, {}# init a dict that value is a list to collect the value that belong to the same req tagfor…
先看代码: In [1]: a = {'name': 'wang'} In [2]: a.get('age') In [3]: a['age'] --------------------------------------------------------------------------- KeyError Traceback (most recent call last) <ipython-input-3-a620cb7b172a> in <module>() ----&g…