码迷,mamicode.com
首页 > 编程语言 > 详细

Python之路【第三篇】:Python基础(11)——set集合

时间:2016-05-28 06:38:07      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

old_dict = {
"#1":{ ‘hostname‘:‘c1‘, ‘cpu_count‘: 2, ‘mem_capicity‘: 80 },
"#2":{ ‘hostname‘:‘c1‘, ‘cpu_count‘: 2, ‘mem_capicity‘: 80 },
"#3":{ ‘hostname‘:‘c1‘, ‘cpu_count‘: 2, ‘mem_capicity‘: 80 }
}

# cmdb 新汇报的数据

new_dict = {
"#1":{ ‘hostname‘:‘c1‘, ‘cpu_count‘: 2, ‘mem_capicity‘: 800 },
"#3":{ ‘hostname‘:‘c1‘, ‘cpu_count‘: 2, ‘mem_capicity‘: 80 },
"#4":{ ‘hostname‘:‘c2‘, ‘cpu_count‘: 2, ‘mem_capicity‘: 80 }
}
#实现方式一,用for循环:
for k in new_dict:
# print(k)
old_dict[k] = new_dict[k]
# # print(new_dict[k])
# print(old_dict[k])
print(old_dict)
#实现方式二,直接用set集合的update方法:
old_dict.update(new_dict)
print(old_dict)

Python之路【第三篇】:Python基础(11)——set集合

标签:

原文地址:http://www.cnblogs.com/jiangnanmu/p/5536692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!