跳至主要內容

HW3 Part 2 MGT 6203

AI悦创原创2023年11月12日Python辅导Python 作业代写gatech.edu乔治亚理工大约 4 分钟...约 1169 字

Create a function which concatenates two dictionaries. If the two dictionaries have the same key then their values are added.

For instance:

(1) If the two dictionaries are {'a': 1, 'b': 2} and {'d': 4} then the function should return {'a': 1, 'b': 2, 'd': 4}

(2) If the two dictionaries are {'a': 1, 'b': 2} and {'a':3, 'd': 4} then the function should return {'a': 4, 'b': 2, 'd': 4}.

#Question 4

def concatenate_dict(d1,d2):
    """ put two dictionaries together
        if they contain the same key, add the corresponding values
    """

    
    
    
    
print(concatenate_dict({'a':1,'b':2},{'d':4})) #should return {'a': 1, 'b': 2, 'd': 4}
print(concatenate_dict({'a':1,'b':2,'d':4,'m':4},{'d':2,'e':7,'m':11})) #should return {'a': 1, 'b': 2, 'd': 6, 'm': 15, 'e': 7}
print(concatenate_dict({'a':12},{'a':2})) #should return {'a': 14}
from collections import Counter

def concatenate_dict(d1, d2):
    
    return print(Counter(d1)+Counter(d2) )
公众号:AI悦创【二维码】

AI悦创·编程一对一

AI悦创·推出辅导班啦,包括「Python 语言辅导班、C++ 辅导班、java 辅导班、算法/数据结构辅导班、少儿编程、pygame 游戏开发、Web、Linux」,全部都是一对一教学:一对一辅导 + 一对一答疑 + 布置作业 + 项目实践等。当然,还有线下线上摄影课程、Photoshop、Premiere 一对一教学、QQ、微信在线,随时响应!微信:Jiabcdefh

C++ 信息奥赛题解,长期更新!长期招收一对一中小学信息奥赛集训,莆田、厦门地区有机会线下上门,其他地区线上。微信:Jiabcdefh

方法一:QQ

方法二:微信:Jiabcdefh

你认为这篇文章怎么样?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
评论
  • 按正序
  • 按倒序
  • 按热度
通知
关于编程私教&加密文章