mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Fix typo in definition of 'in' keyword.
This commit is contained in:
parent
edef05b0a3
commit
c8bdc01d82
1 changed files with 1 additions and 1 deletions
|
@ -1061,7 +1061,7 @@ in s`` returns the negation of ``x in s``. All built-in sequences and set types
|
||||||
support this as well as dictionary, for which :keyword:`in` tests whether a the
|
support this as well as dictionary, for which :keyword:`in` tests whether a the
|
||||||
dictionary has a given key. For container types such as list, tuple, set,
|
dictionary has a given key. For container types such as list, tuple, set,
|
||||||
frozenset, dict, or collections.deque, the expression ``x in y`` is equivalent
|
frozenset, dict, or collections.deque, the expression ``x in y`` is equivalent
|
||||||
to ``any(x is e or x == e for val e in y)``.
|
to ``any(x is e or x == e for e in y)``.
|
||||||
|
|
||||||
For the string and bytes types, ``x in y`` is true if and only if *x* is a
|
For the string and bytes types, ``x in y`` is true if and only if *x* is a
|
||||||
substring of *y*. An equivalent test is ``y.find(x) != -1``. Empty strings are
|
substring of *y*. An equivalent test is ``y.find(x) != -1``. Empty strings are
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue