From 902fa3735b4d14a733e65086c7974ce3e0a9962d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 27 Feb 2019 16:37:48 +0100 Subject: [PATCH] Dict --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f58833..41d4313 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,9 @@ value = .setdefault(key, default=None) # Same, but also adds default to ```python .update() # Or: dict_a = {**dict_a, **dict_b}. - = dict() # Inits a dict from coll. of key-value pairs. - = dict(zip(keys, values)) # Inits a dict from two collections. - = dict.fromkeys(keys [, value]) # Inits a dict from collection of keys. + = dict() # Creates a dict from coll. of key-value pairs. + = dict(zip(keys, values)) # Creates a dict from two collections. + = dict.fromkeys(keys [, value]) # Creates a dict from collection of keys. ``` ```python