File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1010,11 +1010,11 @@ operations have the same priority as the corresponding numeric operations. [3]_
10101010| ``x not in s `` | ``False `` if an item of *s * is | \( 1) |
10111011| | equal to *x *, else ``True `` | |
10121012+--------------------------+--------------------------------+----------+
1013- | ``s + t `` | the concatenation of *s * and | (6)(7) |
1013+ | ``s + t `` or `` s += t `` | the concatenation of *s * and | (6)(7) |
10141014| | *t * | |
10151015+--------------------------+--------------------------------+----------+
10161016| ``s * n `` or | equivalent to adding *s * to | (2)(7) |
1017- | ``n * s `` | itself *n * times | |
1017+ | ``n * s `` or `` s *= n `` | itself *n * times | |
10181018+--------------------------+--------------------------------+----------+
10191019| ``s[i] `` | *i *\ th item of *s *, origin 0 | (3)(8) |
10201020+--------------------------+--------------------------------+----------+
You can’t perform that action at this time.
0 commit comments