From df21b9ae4a54faf156a7666a6d09a5cf691430b5 Mon Sep 17 00:00:00 2001 From: zhangenming <282126346@qq.com> Date: Fri, 12 Dec 2025 09:55:25 +0800 Subject: [PATCH] . --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 3899e5b59d8852..d737efae67cb77 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1010,11 +1010,11 @@ operations have the same priority as the corresponding numeric operations. [3]_ | ``x not in s`` | ``False`` if an item of *s* is | \(1) | | | equal to *x*, else ``True`` | | +--------------------------+--------------------------------+----------+ -| ``s + t`` | the concatenation of *s* and | (6)(7) | +| ``s + t`` or ``s += t`` | the concatenation of *s* and | (6)(7) | | | *t* | | +--------------------------+--------------------------------+----------+ | ``s * n`` or | equivalent to adding *s* to | (2)(7) | -| ``n * s`` | itself *n* times | | +| ``n * s`` or ``s *= n`` | itself *n* times | | +--------------------------+--------------------------------+----------+ | ``s[i]`` | *i*\ th item of *s*, origin 0 | (3)(8) | +--------------------------+--------------------------------+----------+