@@ -162,7 +162,7 @@ msgstr "``x and y``"
162
162
163
163
#: ../../library/stdtypes.rst:90
164
164
msgid "if *x* is false, then *x*, else *y*"
165
- msgstr "假如 *x* 為 false ,則 *x*,否則 *y*"
165
+ msgstr "假如 *x* 為假 ,則 *x*,否則 *y*"
166
166
167
167
#: ../../library/stdtypes.rst:90 ../../library/stdtypes.rst:288
168
168
#: ../../library/stdtypes.rst:308 ../../library/stdtypes.rst:1205
@@ -177,7 +177,7 @@ msgstr "``not x``"
177
177
178
178
#: ../../library/stdtypes.rst:93
179
179
msgid "if *x* is false, then ``True``, else ``False``"
180
- msgstr "假如 *x* 為 false ,則 ``True``,否則 ``False``"
180
+ msgstr "假如 *x* 為假 ,則 ``True``,否則 ``False``"
181
181
182
182
#: ../../library/stdtypes.rst:93 ../../library/stdtypes.rst:975
183
183
#: ../../library/stdtypes.rst:1208 ../../library/stdtypes.rst:2430
@@ -200,14 +200,14 @@ msgid ""
200
200
"This is a short-circuit operator, so it only evaluates the second argument "
201
201
"if the first one is false."
202
202
msgstr ""
203
- "這是一個短路運算子,所以他只有在第一個引數為 false 時 ,才會對第二個引數求值。"
203
+ "這是一個短路運算子,所以他只有在第一個引數為假時 ,才會對第二個引數求值。"
204
204
205
205
#: ../../library/stdtypes.rst:109
206
206
msgid ""
207
207
"This is a short-circuit operator, so it only evaluates the second argument "
208
208
"if the first one is true."
209
209
msgstr ""
210
- "這是一個短路運算子,所以他只有在第一個引數為 true 時 ,才會對第二個引數求值。"
210
+ "這是一個短路運算子,所以他只有在第一個引數為真時 ,才會對第二個引數求值。"
211
211
212
212
#: ../../library/stdtypes.rst:113
213
213
msgid ""
@@ -231,7 +231,7 @@ msgid ""
231
231
msgstr ""
232
232
"在 Python 裡共有 8 種比較運算。他們的優先順序都相同(皆優先於 Boolean 運"
233
233
"算)。比較運算可以任意的串連;例如,``x < y <= z`` 等同於 ``x < y and y <= "
234
- "z``,差異只在於前者的 *y* 只有被求值一次(但在這兩個例子中,當 ``x < y`` 為 false "
234
+ "z``,差異只在於前者的 *y* 只有被求值一次(但在這兩個例子中,當 ``x < y`` 為假 "
235
235
"時,*z* 皆不會被求值)。"
236
236
237
237
#: ../../library/stdtypes.rst:140
0 commit comments