zoukankan      html  css  js  c++  java
  • 比较两个字典的值

    def check_key_list(dict1):
    """
    找出字典中值不为空的key
    :param dict1:
    :return:
    """
    key_list=[]
    for k,v in dict1.items():
    if v==None or v=='':
    pass
    else:
    key_list.append(k)
    return key_list

    def compare_two_dict(dict1, dict2):
    """

    :param dict1: 期望的字典
    :param dict2: json解析的字典
    :return:
    """
    # 从dict1中找出值不为None或者''的key存到key_list,然后比较两个字典对应key的值是否相等
    key_list=check_key_list(dict1)
    flag = True
    keys1 = dict1.keys()
    keys2 = dict2.keys()
    neq_key=[]
    if len(key_list) != 0:
    for key in key_list:
    if key in keys1 and key in keys2:
    if dict1[key] == dict2[key]:
    flag = flag & True
    else:
    flag = flag & False
    neq_key.append(key)
    print("{}这个key对应的值两个dict不相等".format(key))
    print("期望的是:{}".format(dict1[key]))
    print("***"*20)
    print("解析的是:{}".format(dict2[key]))
    else:
    raise Exception('key_list contains error key')

    else:
    raise Exception('key_list is null')
    if flag:
    result = True
    else:
    result = False
    return result
  • 相关阅读:
    redis搭建集群
    redis搭建主从
    redis与python交互
    redis数据操作篇
    redis配置篇
    node 淘宝镜像
    java 深copy
    springmvc配置访问静态文件
    centos 启动 oracle
    List 分隔多次执行 且在同一个事物当中
  • 原文地址:https://www.cnblogs.com/fyangq/p/13889250.html
Copyright © 2011-2022 走看看