Skip to content

Commit a904112

Browse files
committed
些微修正
1 parent b22377a commit a904112

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorial/datastructures.po

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ msgid ""
100100
"Return zero-based index in the list of the first item whose value is equal "
101101
"to *x*. Raises a :exc:`ValueError` if there is no such item."
102102
msgstr ""
103-
"回傳 list 中第一個值為 *x* 的索引值(從零開始索引) 。若 list 中無此項目,則丟"
103+
"回傳 list 中第一個值為 *x* 的索引值從零開始索引。若 list 中無此項目,則丟"
104104
"出 :exc:`ValueError`錯誤。"
105105

106106
#: ../../tutorial/datastructures.rst:69
@@ -555,7 +555,7 @@ msgid ""
555555
msgstr ""
556556
"思考 dict 最好的方式是把它想成是一組無序鍵值對 (*key: value* pair) 的集合,其"
557557
"中 key 在同一個 dictionary(字典)裡必須是獨一無二的。使用一對大括號可創建一"
558-
"個空的字典 :``{}`` 。將一串由逗號分隔的鍵對值置於大括號則可初始化字典 。這也"
558+
"個空的字典 :``{}`` 。將一串由逗號分隔的鍵對值置於大括號則可初始化字典 。"
559559
"同樣也是字典輸出時的格式。"
560560

561561
#: ../../tutorial/datastructures.rst:506
@@ -578,7 +578,7 @@ msgid ""
578578
"use the :keyword:`in` keyword."
579579
msgstr ""
580580
"對字典使用 ``list(d.keys())`` 會得到一個包含該字典所有鍵 (key),順序為任意排"
581-
"列的 list 。(若想要排序,則使用 ``sorted(d.keys())`` 代替即可)。若想確認一"
581+
"列的 list 。(若想要排序,則使用 ``sorted(d.keys())`` 代替即可)。如果想確認一"
582582
"個鍵是否已存在於字典當中,可使用關鍵字 :keyword:`in` 。"
583583

584584
#: ../../tutorial/datastructures.rst:517

0 commit comments

Comments
 (0)