From fb4924cd419b03a70c4f54f1d9db9ce5d18d866d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 6 Jan 2019 02:43:15 +0100 Subject: [PATCH] Dictionary --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c1b1135..b1fa531 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,6 @@ Dictionary ``` ```python -value = .get(key) # Returns None if key does not exist. value = .get(key, default) # Returns default if key does not exist. value = .setdefault(key, default) # Same, but also adds default to dict. = collections.defaultdict() # Creates a dictionary with default value of type.