@@ -999,6 +999,9 @@ The ``in`` and ``not in`` operations have the same priorities as the
999999comparison operations. The ``+ `` (concatenation) and ``* `` (repetition)
10001000operations have the same priority as the corresponding numeric operations. [3 ]_
10011001
1002+ See :ref: `time-complexity ` for the costs of the various sequence
1003+ operations.
1004+
10021005.. index ::
10031006 triple: operations on; sequence; types
10041007 pair: built-in function; len
@@ -1121,6 +1124,8 @@ Notes:
11211124 "end" values (which end depends on the sign of *k *). Note, *k * cannot be zero.
11221125 If *k * is ``None ``, it is treated like ``1 ``.
11231126
1127+ .. _typesseq-repeated-concatenation :
1128+
11241129(6)
11251130 Concatenating immutable sequences always results in a new object. This
11261131 means that building up a sequence by repeated concatenation will have a
@@ -5116,6 +5121,7 @@ computing mathematical operations such as intersection, union, difference, and
51165121symmetric difference.
51175122(For other containers see the built-in :class: `dict `, :class: `list `,
51185123and :class: `tuple ` classes, and the :mod: `collections ` module.)
5124+ See :ref: `time-complexity ` for the costs of the various set operations.
51195125
51205126Like other collections, sets support ``x in set ``, ``len(set) ``, and ``for x in
51215127set ``. Being an unordered collection, sets do not record element position or
@@ -5340,6 +5346,8 @@ There are currently two standard mapping types, the :dfn:`dictionary` and
53405346(For other containers see the built-in
53415347:class: `list `, :class: `set `, and :class: `tuple ` classes, and the
53425348:mod: `collections ` module.)
5349+ See :ref: `time-complexity ` for the costs of the various dictionary
5350+ operations.
53435351
53445352A dictionary's keys are *almost * arbitrary values. Values that are not
53455353:term: `hashable `, that is, values containing lists, dictionaries or other
0 commit comments