@@ -9,7 +9,7 @@ msgstr ""
9
9
"Project-Id-Version : Python 3.10\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
11
"POT-Creation-Date : 2022-07-06 00:17+0000\n "
12
- "PO-Revision-Date : 2022-08-14 20:54 +0800\n "
12
+ "PO-Revision-Date : 2022-08-14 22:46 +0800\n "
13
13
"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
14
14
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
15
15
"tw)\n "
@@ -178,7 +178,7 @@ msgstr ""
178
178
179
179
#: ../../faq/design.rst:95
180
180
msgid "Why are Python strings immutable?"
181
- msgstr "為何Python字串為不可變動 "
181
+ msgstr "為什麼 Python 字符串不可變動? "
182
182
183
183
#: ../../faq/design.rst:97
184
184
msgid "There are several advantages."
@@ -191,6 +191,9 @@ msgid ""
191
191
"unchanging. This is also one of the reasons for the distinction between "
192
192
"tuples and lists."
193
193
msgstr ""
194
+ "其一是效能:知道字串不可變動後,我們就可以在創造他的時候就分配好空間,而後他"
195
+ "的儲存空間需求就是固定不變的。這也是值組 (tuples) 和列表 (lists) 相異的其中一"
196
+ "個原因。"
194
197
195
198
#: ../../faq/design.rst:104
196
199
msgid ""
@@ -199,6 +202,8 @@ msgid ""
199
202
"and in Python, no amount of activity will change the string \" eight\" to "
200
203
"anything else."
201
204
msgstr ""
205
+ "另一個優點是在 python 中,字串和數字一樣「基本」。沒有任何行為會把 8 這個數值"
206
+ "改成其他數值;同理,在 Python 中也沒有任何行為會修改字串「eight」。"
202
207
203
208
#: ../../faq/design.rst:112
204
209
msgid "Why must 'self' be used explicitly in method definitions and calls?"
0 commit comments