美文网首页
Python 小技巧

Python 小技巧

作者: 水之心 | 来源:发表于2021-10-07 23:45 被阅读0次

1 Python: dict 小技巧

注意:Python 3 中的 dict 是有序的。

1.1 别样的合并字典技巧

x = {'a':1,'b':2}
y = dict(b=3, d=4)

d = {**x,**y}
print(d)

由输出结果可以看出:新的值会覆盖旧值。

相关文章

网友评论

      本文标题:Python 小技巧

      本文链接:https://www.haomeiwen.com/subject/qzetoltx.html