@@ -8,7 +8,7 @@ msgstr ""
8
8
"Project-Id-Version : Python 3.12\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
10
"POT-Creation-Date : 2024-06-02 00:03+0000\n "
11
- "PO-Revision-Date : 2024-06-24 21:55 +0800\n "
11
+ "PO-Revision-Date : 2024-07-08 20:17 +0800\n "
12
12
"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
14
"tw)\n "
@@ -552,8 +552,8 @@ msgid ""
552
552
"order of the input *iterable*. If the input *iterable* is sorted, the output "
553
553
"tuples will be produced in sorted order."
554
554
msgstr ""
555
- "根據輸入值 *iterable* 的順序,組合元組按字典順序輸出 。如果輸入的 *iterable* "
556
- "已經排序,則輸出的元組也將按排序的順序產生。"
555
+ "根據輸入值 *iterable* 的順序,組合的元組會按照字典順序輸出 。如果輸入的 "
556
+ "*iterable* 已經排序,則輸出的元組也將按排序的順序產生。"
557
557
558
558
#: ../../library/itertools.rst:232
559
559
msgid ""
@@ -569,6 +569,7 @@ msgid ""
569
569
"Return *r* length subsequences of elements from the input *iterable* "
570
570
"allowing individual elements to be repeated more than once."
571
571
msgstr ""
572
+ "回傳來自輸入 *iterable* 的長度為 *r* 的子序列,且允許個別元素重複多次。"
572
573
573
574
#: ../../library/itertools.rst:266
574
575
msgid ""
@@ -577,41 +578,54 @@ msgid ""
577
578
"number of subsequence returned is ``(n + r - 1)! / r! / (n - 1)!`` when ``n "
578
579
"> 0``."
579
580
msgstr ""
581
+ "其輸出是一個 :func:`product` 的子序列,僅保留作為 *iterable* 子序列(可能有重"
582
+ "複元素)的條目。當 ``n > 0`` 時,回傳的子序列數量為 ``(n + r - 1)! / r! / (n "
583
+ "- 1)!``。"
580
584
581
585
#: ../../library/itertools.rst:271
582
586
msgid ""
583
587
"The combination tuples are emitted in lexicographic order according to the "
584
588
"order of the input *iterable*. if the input *iterable* is sorted, the output "
585
589
"tuples will be produced in sorted order."
586
590
msgstr ""
591
+ "根據輸入值 *iterable* 的順序,組合的元組會按照字典順序輸出。如果輸入的 "
592
+ "*iterable* 已經排序,則輸出的元組也將按排序的順序產生。"
587
593
588
594
#: ../../library/itertools.rst:275
589
595
msgid ""
590
596
"Elements are treated as unique based on their position, not on their value. "
591
597
"If the input elements are unique, the generated combinations will also be "
592
598
"unique."
593
599
msgstr ""
600
+ "元素是根據它們的位置來決定其唯一性,而不是它們的值。如果輸入的元素都是獨特"
601
+ "的,生成的組合也將是獨特的。"
594
602
595
603
#: ../../library/itertools.rst:305
596
604
msgid ""
597
605
"Make an iterator that returns elements from *data* where the corresponding "
598
606
"element in *selectors* is true. Stops when either the *data* or *selectors* "
599
607
"iterables have been exhausted. Roughly equivalent to::"
600
608
msgstr ""
609
+ "建立一個疊代器,回傳 *data* 中對應 *selectors* 的元素為真的元素。當 *data* "
610
+ "或 *selectors* 可疊代物件耗盡時停止。大致等價於: ::"
601
611
602
612
#: ../../library/itertools.rst:319
603
613
msgid ""
604
614
"Make an iterator that returns evenly spaced values beginning with *start*. "
605
615
"Can be used with :func:`map` to generate consecutive data points or with :"
606
616
"func:`zip` to add sequence numbers. Roughly equivalent to::"
607
617
msgstr ""
618
+ "建立一個疊代器,回傳從 *start* 開始的等差的值。可以與 :func:`map` 一起使用來"
619
+ "產生連續的資料點,或與 :func:`zip` 一起使用來增加序列號。大致等價於: ::"
608
620
609
621
#: ../../library/itertools.rst:332
610
622
msgid ""
611
623
"When counting with floating point numbers, better accuracy can sometimes be "
612
624
"achieved by substituting multiplicative code such as: ``(start + step * i "
613
625
"for i in count())``."
614
626
msgstr ""
627
+ "當用浮點數計數時,將上述程式碼替換為乘法有時可以獲得更好的精確度,例如:"
628
+ "``(start + step * i for i in count())``。"
615
629
616
630
#: ../../library/itertools.rst:336
617
631
msgid "Added *step* argument and allowed non-integer arguments."
0 commit comments