summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/use-dict-literal/good.py
blob: 237d2c881ddc78b780dde4fa64f0bda633299691 (plain)
1
2
3
4
5
6
7
empty_dict = {}

# create using a literal dict
new_dict = {"foo": "bar"}

# shallow copy a dict
new_dict = {**another_dict}