File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -1399,12 +1399,12 @@ msgid ""
13991399"parrot('a thousand', state='pushing up the daisies') # 1 positional, 1 "
14001400"keyword"
14011401msgstr ""
1402- "parrot(1000) # 1 個位置引數
1403- parrot(voltage=1000) # 1 個關鍵字引數
1404- parrot(voltage=1000000, action='VOOOOOM') # 2 個關鍵字引數
1405- parrot(action='VOOOOOM', voltage=1000000) # 2 個關鍵字引數
1406- parrot('a million', 'bereft of life', 'jump') # 3 個位置引數
1407- parrot('a thousand', state='pushing up the daisies') # 1 個位置引數、1 個關鍵字引數"
1402+ "parrot(1000) # 1 個位置引數\n"
1403+ " parrot(voltage=1000) # 1 個關鍵字引數\n"
1404+ " parrot(voltage=1000000, action='VOOOOOM') # 2 個關鍵字引數\n"
1405+ " parrot(action='VOOOOOM', voltage=1000000) # 2 個關鍵字引數\n"
1406+ " parrot('a million', 'bereft of life', 'jump') # 3 個位置引數\n"
1407+ " parrot('a thousand', state='pushing up the daisies') # 1 個位置引數、1 個關鍵字引數\n "
14081408
14091409#: ../../tutorial/controlflow.rst:677
14101410msgid "but all the following calls would be invalid::"
Original file line number Diff line number Diff line change @@ -381,8 +381,7 @@ msgstr ""
381381">>> s = 'First line.\\ nSecond line.' # \\ n 表示換行\n"
382382">>> s # 沒有 print(),特殊字元會包含在字串中\n"
383383"'First line.\\ nSecond line.'\n"
384- ">>> print(s) # with print(), special characters are interpreted, so \\ n "
385- "produces new line\n"
384+ ">>> print(s) # 有 print(),特殊字元會被直譯,所以 \\ n 會產生新的一行\n"
386385"First line.\n"
387386"Second line."
388387
Original file line number Diff line number Diff line change @@ -1075,7 +1075,7 @@ msgstr ""
10751075" \" reverse\" , # !!! 現在指向 'reverse' 函式 !!!\n"
10761076"]\n"
10771077"\n"
1078- "def reverse(msg: str): # 在 'from sound.effects import *' 的情況下\n"
1078+ "def reverse(msg: str): # <-- 在 'from sound.effects import *' 的情況下\n"
10791079" return msg[::-1] # 這個名稱遮蔽了 'reverse.py' 子模組"
10801080
10811081#: ../../tutorial/modules.rst:534
You can’t perform that action at this time.
0 commit comments