摘要: 一、使用 update() 方法 A = {'a': 1, 'b': 2} B = {'c': 3, 'd': 4} A.update(B) print(A) 输出结果为: {'a': 1, 'b': 2, 'c': 3, 'd': 4} 二、使用 ** 运算符 A = {'a': 1, 'b': 阅读全文
posted @ 2023-04-23 17:30 xyztank 阅读(35) 评论(0) 推荐(0) 编辑