diff --git a/README.md b/README.md index 4a05bef..84ac316 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ Dictionary ``` ```python ->>> a = [(1, 4), (3, 50)] +>>> a = [('x', 4), ('y', 5)] >>> dict(a) -{1: 4, 3: 50} +{'x': 4, 'y': 5} ``` ```python @@ -66,7 +66,7 @@ Set .intersection() .difference() .issubset() -..issuperset() +.issuperset() ``` ### Frozenset