久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

如果字典中的鍵重復,如何引發錯誤

How to raise error if duplicates keys in dictionary(如果字典中的鍵重復,如何引發錯誤)
本文介紹了如果字典中的鍵重復,如何引發錯誤的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

如果用戶在字典中輸入重復鍵,我會嘗試引發錯誤.字典在一個文件中,用戶可以手動編輯該文件.

I try to raise an error if the user enter a duplicate key in a dictionary. The dictionary is in a file and the user can edit the file manually.

例子:

dico= {'root':{
                'a':{'some_key':'value',...},
                'b':{'some_key':'value',...},
                'c':{'some_key':'value',...},
                ...

                'a':{'some_key':'value',...},
              }
      }

新鍵a"已經存在...

the new key 'a' already exist...

當我從文件中加載 dico 時,如何測試 dico 并警告用戶?

How can I test dico and warn the user when I load dico from the file?

推薦答案

寫一個dict的子類,覆蓋__setitem__,這樣在替換現有key時會拋出錯誤;重寫文件以使用新子類的構造函數而不是默認的 dict 內置函數.

Write a subclass of dict, override __setitem__ such that it throws an error when replacing an existing key; rewrite the file to use your new subclass's constructor instead of the default dict built-ins.

import collections

class Dict(dict):
    def __init__(self, inp=None):
        if isinstance(inp,dict):
            super(Dict,self).__init__(inp)
        else:
            super(Dict,self).__init__()
            if isinstance(inp, (collections.Mapping, collections.Iterable)): 
                si = self.__setitem__
                for k,v in inp:
                    si(k,v)

    def __setitem__(self, k, v):
        try:
            self.__getitem__(k)
            raise ValueError("duplicate key '{0}' found".format(k))
        except KeyError:
            super(Dict,self).__setitem__(k,v)

那么你的文件必須寫成

dico = Dict(
    ('root', Dict(
        ('a', Dict(
            ('some_key', 'value'),
            ('another_key', 'another_value')
        ),
        ('b', Dict(
            ('some_key', 'value')
        ),
        ('c', Dict(
            ('some_key', 'value'),
            ('another_key', 'another_value')
        ),

        ....
    )
)

使用元組而不是字典來導入文件(使用 {} 表示法編寫,它將使用默認的字典構造函數,并且重復項會在字典構造函數獲取它們之前消失!).

using tuples instead of dicts for the file import (written using the {} notation, it would use the default dict constructor, and the duplicates would disappear before the Dict constructor ever gets them!).

這篇關于如果字典中的鍵重復,如何引發錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

How to draw a rectangle around a region of interest in python(如何在python中的感興趣區域周圍繪制一個矩形)
How can I detect and track people using OpenCV?(如何使用 OpenCV 檢測和跟蹤人員?)
How to apply threshold within multiple rectangular bounding boxes in an image?(如何在圖像的多個矩形邊界框中應用閾值?)
How can I download a specific part of Coco Dataset?(如何下載 Coco Dataset 的特定部分?)
Detect image orientation angle based on text direction(根據文本方向檢測圖像方向角度)
Detect centre and angle of rectangles in an image using Opencv(使用 Opencv 檢測圖像中矩形的中心和角度)
主站蜘蛛池模板: 黑人巨大精品欧美一区二区免费 | 久久久久国产一区二区三区 | 欧美综合一区二区三区 | 密室大逃脱第六季大神版在线观看 | 国产91色在线 | 亚洲 | 国产在线精品一区二区三区 | 黄色一级网 | 国产午夜久久 | 国产三级一区二区 | 超级乱淫av片免费播放 | 日本不卡免费新一二三区 | 91久久久www播放日本观看 | 亚洲精品免费视频 | 亚洲36d大奶网 | 国产精品视频偷伦精品视频 | 超碰超碰 | 国产乱码一区 | 国产精品日日做人人爱 | 麻豆一区二区三区精品视频 | 成人毛片视频免费 | 久久伊| 性做久久久久久免费观看欧美 | 在线观看成人精品 | 中文字幕免费观看 | 日韩欧美一区二区三区免费观看 | 色在线免费视频 | 亚洲福利一区二区 | 亚洲欧美激情四射 | 91一区二区 | 精品视频久久久 | 亚洲精品第一 | 亚洲视频一区二区三区 | 精品视频一区二区三区在线观看 | 亚洲一区毛片 | 亚洲一区二区三区在线视频 | 国产视频中文字幕 | 乱码av午夜噜噜噜噜动漫 | 久久久亚洲 | 中文字幕亚洲精品 | www.天堂av.com | 天堂色网 |