Browse Source

dict: add del operator

pull/9/head
crazyiop 6 years ago
parent
commit
a0d731679a
1 changed files with 1 additions and 0 deletions
  1. 1
      README.md

1
README.md

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

Loading…
Cancel
Save