<i id='nGSPb'><tr id='nGSPb'><dt id='nGSPb'><q id='nGSPb'><span id='nGSPb'><b id='nGSPb'><form id='nGSPb'><ins id='nGSPb'></ins><ul id='nGSPb'></ul><sub id='nGSPb'></sub></form><legend id='nGSPb'></legend><bdo id='nGSPb'><pre id='nGSPb'><center id='nGSPb'></center></pre></bdo></b><th id='nGSPb'></th></span></q></dt></tr></i><div id='nGSPb'><tfoot id='nGSPb'></tfoot><dl id='nGSPb'><fieldset id='nGSPb'></fieldset></dl></div>

      <bdo id='nGSPb'></bdo><ul id='nGSPb'></ul>

      <legend id='nGSPb'><style id='nGSPb'><dir id='nGSPb'><q id='nGSPb'></q></dir></style></legend>
    1. <tfoot id='nGSPb'></tfoot>
    2. <small id='nGSPb'></small><noframes id='nGSPb'>

    3. 如何制作一个字典,为字典中缺少的键返回键,而不是引发KeyError?

      How to make a dictionary that returns key for keys missing from the dictionary instead of raising KeyError?(如何制作一个字典,为字典中缺少的键返回键,而不是引发KeyError?)
      <legend id='UyKol'><style id='UyKol'><dir id='UyKol'><q id='UyKol'></q></dir></style></legend>

      <i id='UyKol'><tr id='UyKol'><dt id='UyKol'><q id='UyKol'><span id='UyKol'><b id='UyKol'><form id='UyKol'><ins id='UyKol'></ins><ul id='UyKol'></ul><sub id='UyKol'></sub></form><legend id='UyKol'></legend><bdo id='UyKol'><pre id='UyKol'><center id='UyKol'></center></pre></bdo></b><th id='UyKol'></th></span></q></dt></tr></i><div id='UyKol'><tfoot id='UyKol'></tfoot><dl id='UyKol'><fieldset id='UyKol'></fieldset></dl></div>
      <tfoot id='UyKol'></tfoot>

              <tbody id='UyKol'></tbody>

            <small id='UyKol'></small><noframes id='UyKol'>

              • <bdo id='UyKol'></bdo><ul id='UyKol'></ul>
              • 本文介绍了如何制作一个字典,为字典中缺少的键返回键,而不是引发KeyError?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我要创建一个python字典,该字典向我返回字典中缺少的键的键值。

                使用示例:

                dic = smart_dict()
                dic['a'] = 'one a'
                print(dic['a'])
                # >>> one a
                print(dic['b'])
                # >>> b
                

                推荐答案

                dict有一个__missing__挂钩:

                class smart_dict(dict):
                    def __missing__(self, key):
                        return key
                

                可以简化为(因为self从未使用过):

                class smart_dict(dict):
                    @staticmethod
                    def __missing__(key):
                        return key
                

                这篇关于如何制作一个字典,为字典中缺少的键返回键,而不是引发KeyError?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                How to break out of multiple loops?(如何打破多个循环?)
                How to put the legend out of the plot(如何将传说从情节中剔除)
                Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)
                  1. <legend id='jNgbB'><style id='jNgbB'><dir id='jNgbB'><q id='jNgbB'></q></dir></style></legend>
                    <i id='jNgbB'><tr id='jNgbB'><dt id='jNgbB'><q id='jNgbB'><span id='jNgbB'><b id='jNgbB'><form id='jNgbB'><ins id='jNgbB'></ins><ul id='jNgbB'></ul><sub id='jNgbB'></sub></form><legend id='jNgbB'></legend><bdo id='jNgbB'><pre id='jNgbB'><center id='jNgbB'></center></pre></bdo></b><th id='jNgbB'></th></span></q></dt></tr></i><div id='jNgbB'><tfoot id='jNgbB'></tfoot><dl id='jNgbB'><fieldset id='jNgbB'></fieldset></dl></div>
                      • <bdo id='jNgbB'></bdo><ul id='jNgbB'></ul>

                        <small id='jNgbB'></small><noframes id='jNgbB'>

                        <tfoot id='jNgbB'></tfoot>
                            <tbody id='jNgbB'></tbody>