mirror of https://github.com/python/cpython
bpo-30312: Small correction in datastructures set code sample (GH-2081)
This commit is contained in:
parent
c5179f6e2d
commit
ca81615344
|
@ -466,7 +466,7 @@ Here is a brief demonstration::
|
|||
{'a', 'r', 'b', 'c', 'd'}
|
||||
>>> a - b # letters in a but not in b
|
||||
{'r', 'd', 'b'}
|
||||
>>> a | b # letters in either a or b
|
||||
>>> a | b # letters in a or b or both
|
||||
{'a', 'c', 'r', 'd', 'b', 'm', 'z', 'l'}
|
||||
>>> a & b # letters in both a and b
|
||||
{'a', 'c'}
|
||||
|
|
Loading…
Reference in New Issue