Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 902fa37

Browse files
committed
Dict
1 parent a51363a commit 902fa37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ value = <dict>.setdefault(key, default=None) # Same, but also adds default to
7171

7272
```python
7373
<dict>.update(<dict>) # Or: dict_a = {**dict_a, **dict_b}.
74-
<dict> = dict(<collection>) # Inits a dict from coll. of key-value pairs.
75-
<dict> = dict(zip(keys, values)) # Inits a dict from two collections.
76-
<dict> = dict.fromkeys(keys [, value]) # Inits a dict from collection of keys.
74+
<dict> = dict(<collection>) # Creates a dict from coll. of key-value pairs.
75+
<dict> = dict(zip(keys, values)) # Creates a dict from two collections.
76+
<dict> = dict.fromkeys(keys [, value]) # Creates a dict from collection of keys.
7777
```
7878

7979
```python

0 commit comments

Comments
 (0)