Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76eabd3 commit 865ed9eCopy full SHA for 865ed9e
1 file changed
Doc/tutorial/datastructures.rst
@@ -466,7 +466,7 @@ Here is a brief demonstration::
466
{'a', 'r', 'b', 'c', 'd'}
467
>>> a - b # letters in a but not in b
468
{'r', 'd', 'b'}
469
- >>> a | b # letters in either a or b
+ >>> a | b # letters in a or b or both
470
{'a', 'c', 'r', 'd', 'b', 'm', 'z', 'l'}
471
>>> a & b # letters in both a and b
472
{'a', 'c'}
0 commit comments