@@ -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
@@ -5146,6 +5151,7 @@ computing mathematical operations such as intersection, union, difference, and
51465151symmetric difference.
51475152(For other containers see the built-in :class: `dict `, :class: `list `,
51485153and :class: `tuple ` classes, and the :mod: `collections ` module.)
5154+ See :ref: `time-complexity ` for the costs of the various set operations.
51495155
51505156Like other collections, sets support ``x in set ``, ``len(set) ``, and ``for x in
51515157set ``. Being an unordered collection, sets do not record element position or
@@ -5370,6 +5376,8 @@ There are currently two standard mapping types, the :dfn:`dictionary` and
53705376(For other containers see the built-in
53715377:class: `list `, :class: `set `, and :class: `tuple ` classes, and the
53725378:mod: `collections ` module.)
5379+ See :ref: `time-complexity ` for the costs of the various dictionary
5380+ operations.
53735381
53745382A dictionary's keys are *almost * arbitrary values. Values that are not
53755383:term: `hashable `, that is, values containing lists, dictionaries or other
0 commit comments