Browse Source

Merge pull request #9 from crazyiop/dict-del

dict: add del operator
pull/10/head
Jure Šorn 6 years ago
committed by GitHub
parent
commit
c2da828a6b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. 1
      README.md

1
README.md

@ -61,6 +61,7 @@ Dictionary
``` ```
```python ```python
del <dict>[key] # Remove an existing key.
value = <dict>.get(key, default) # Returns default if key does not exist. value = <dict>.get(key, default) # Returns default if key does not exist.
value = <dict>.setdefault(key, default) # Same, but also adds default to dict. value = <dict>.setdefault(key, default) # Same, but also adds default to dict.
<dict> = collections.defaultdict(<type>) # Creates a dictionary with default value of type. <dict> = collections.defaultdict(<type>) # Creates a dictionary with default value of type.

Loading…
Cancel
Save