diff --git a/README.md b/README.md index 51c7faa..e791c94 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ Dictionary ``` ```python +del [key] # Remove an existing key. 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.