11111212# Junkai Shao <[email protected] >, 20181313# Shengjing Zhu <[email protected] >, 201914- # Freesand Leo <[email protected] >, 20191514# jaystone776 <[email protected] >, 20211615#
1716#, fuzzy
@@ -365,7 +364,7 @@ msgstr ":ref:`old-string-formatting`"
365364msgid ""
366365"The old formatting operations invoked when strings are the left operand of "
367366"the ``%`` operator are described in more detail here."
368- msgstr "这里详述了使用 ``%`` 运算符进行字符串格式化 。"
367+ msgstr "这里详述了用 ``%`` 运算符格式化字符串的操作 。"
369368
370369#: ../../tutorial/introduction.rst:375
371370msgid "Lists"
@@ -379,33 +378,31 @@ msgid ""
379378"contain items of different types, but usually the items all have the same "
380379"type. ::"
381380msgstr ""
382- "Python 中可以通过组合一些值得到多种 *复合* 数据类型。其中最常用的 *列表* ,可以通过方括号括起、逗号分隔的一组值得到。一个 *列表* "
383- "可以包含不同类型的元素,但通常使用时各个元素类型相同:: "
381+ "Python 支持多种 *复合* 数据类型,可将不同值组合在一起。最常用的是 *列表* ,是用方括号标注,逗号分隔的一组值。 *列表* "
382+ "可以包含不同类型的元素,但一般情况下,各个元素的类型相同: "
384383
385384#: ../../tutorial/introduction.rst:386
386385msgid ""
387386"Like strings (and all other built-in :term:`sequence` types), lists can be "
388387"indexed and sliced::"
389- msgstr "和字符串(以及各种内置的 :term:`sequence` 类型)一样,列表也支持索引和切片:: "
388+ msgstr "和字符串(及其他内置 :term:`sequence` 类型)一样,列表也支持索引和切片: "
390389
391390#: ../../tutorial/introduction.rst:396
392391msgid ""
393392"All slice operations return a new list containing the requested elements. "
394393"This means that the following slice returns a :ref:`shallow copy "
395394"<shallow_vs_deep_copy>` of the list::"
396- msgstr ""
397- "所有的切片操作都返回一个包含所请求元素的新列表。 这意味着以下切片操作会返回列表的一个 :ref:`浅拷贝 "
398- "<shallow_vs_deep_copy>`::"
395+ msgstr "切片操作返回包含请求元素的新列表。以下切片操作会返回列表的 :ref:`浅拷贝 <shallow_vs_deep_copy>`:"
399396
400397#: ../../tutorial/introduction.rst:403
401398msgid "Lists also support operations like concatenation::"
402- msgstr "列表同样支持拼接操作:: "
399+ msgstr "列表还支持合并操作: "
403400
404401#: ../../tutorial/introduction.rst:408
405402msgid ""
406403"Unlike strings, which are :term:`immutable`, lists are a :term:`mutable` "
407404"type, i.e. it is possible to change their content::"
408- msgstr "与 :term:`immutable` 的字符串不同, 列表是一个 :term:`mutable` 类型,就是说,它自己的内容可以改变:: "
405+ msgstr "与 :term:`immutable` 字符串不同, 列表是 :term:`mutable` 类型,就是说,它的内容可以改变: "
409406
410407#: ../../tutorial/introduction.rst:418
411408msgid ""
0 commit comments