@@ -25,19 +25,18 @@ msgid "Invoking the Interpreter"
25
25
msgstr "인터프리터 실행하기"
26
26
27
27
#: ../../tutorial/interpreter.rst:13
28
- #, fuzzy
29
28
msgid ""
30
29
"The Python interpreter is usually installed as "
31
30
"|usr_local_bin_python_x_dot_y_literal| on those machines where it is "
32
31
"available; putting :file:`/usr/local/bin` in your Unix shell's search "
33
32
"path makes it possible to start it by typing the command:"
34
33
msgstr ""
35
- "파이썬 인터프리터는 보통 :file:`/usr/local/bin/python3.9` 에 설치됩니다; 유닉스 셸의 검색 경로에 "
36
- ":file:`/usr/local/bin` 를 넣으면 명령:"
34
+ "파이썬 인터프리터는 보통 |usr_local_bin_python_x_dot_y_literal| 에 설치됩니다; 유닉스 셸의 검색 "
35
+ "경로에 :file:`/usr/local/bin` 를 넣으면 명령:"
37
36
38
37
#: ../../tutorial/interpreter.rst:17
39
38
msgid "python3.13"
40
- msgstr ""
39
+ msgstr "python3.13 "
41
40
42
41
#: ../../tutorial/interpreter.rst:21
43
42
msgid ""
@@ -51,7 +50,6 @@ msgstr ""
51
50
":file:`/usr/local/python` 도 널리 사용되는 위치입니다.)"
52
51
53
52
#: ../../tutorial/interpreter.rst:26
54
- #, fuzzy
55
53
msgid ""
56
54
"On Windows machines where you have installed Python from the "
57
55
":ref:`Microsoft Store <windows-store>`, the |python_x_dot_y_literal| "
@@ -60,9 +58,9 @@ msgid ""
60
58
":`setting-envvars` for other ways to launch Python."
61
59
msgstr ""
62
60
":ref:`마이크로소프트 스토어 <windows-store>`\\ 에서 설치한 파이썬이 있는 윈도우 시스템에서는, "
63
- ":file:`python3.9` 명령을 사용할 수 있습니다. :ref:`py.exe 구동기 <launcher>`\\ 를 설치했으면, "
64
- ":file:`py` 명령을 사용할 수 있습니다. 파이썬을 구동하는 다른 방법은 :ref:`setting-envvars` \\ 를 "
65
- "참조하십시오."
61
+ "|python_x_dot_y_literal| 명령을 사용할 수 있습니다. :ref:`py.exe 구동기 <launcher>`\\ 를 "
62
+ "설치했으면, :file:`py` 명령을 사용할 수 있습니다. 파이썬을 구동하는 다른 방법은 :ref:`setting-"
63
+ "envvars` \\ 를 참조하십시오."
66
64
67
65
#: ../../tutorial/interpreter.rst:31
68
66
msgid ""
@@ -107,7 +105,6 @@ msgstr ""
107
105
"실행합니다; 파일명을 인자로 주거나 파일을 표준입력으로 연결한 상태로 실행되면 스크립트를 읽고 실행합니다."
108
106
109
107
#: ../../tutorial/interpreter.rst:51
110
- #, fuzzy
111
108
msgid ""
112
109
"A second way of starting the interpreter is ``python -c command [arg] "
113
110
"...``, which executes the statement(s) in *command*, analogous to the "
@@ -117,7 +114,7 @@ msgid ""
117
114
msgstr ""
118
115
"인터프리터를 실행하는 두 번째 방법은 ``python -c command [arg] ...`` 인데, *command* 에 있는 "
119
116
"문장들을 실행합니다. 셸의 :option:`-c` 옵션에 해당합니다. 파이썬 문장은 종종 셸에서 특별한 의미가 있는 공백이나 다른 "
120
- "문자들을 포함하기 때문에, *command* 전체를 작은따옴표로 감싸주는 것이 좋습니다."
117
+ "문자들을 포함하기 때문에, *command* 전체를 따옴표로 감싸주는 것이 좋습니다."
121
118
122
119
#: ../../tutorial/interpreter.rst:57
123
120
msgid ""
@@ -197,6 +194,12 @@ msgid ""
197
194
"information.\n"
198
195
">>>"
199
196
msgstr ""
197
+ "$ python3.13\n"
198
+ "Python 3.13 (default, April 4 2023, 09:25:04)\n"
199
+ "[GCC 10.2.0] on linux\n"
200
+ "Type \" help\" , \" copyright\" , \" credits\" or \" license\" for more "
201
+ "information.\n"
202
+ ">>>"
200
203
201
204
#: ../../tutorial/interpreter.rst:108
202
205
msgid ""
@@ -212,6 +215,11 @@ msgid ""
212
215
"...\n"
213
216
"Be careful not to fall off!"
214
217
msgstr ""
218
+ ">>> the_world_is_flat = True\n"
219
+ ">>> if the_world_is_flat:\n"
220
+ "... print(\" Be careful not to fall off!\" )\n"
221
+ "...\n"
222
+ "Be careful not to fall off!"
215
223
216
224
#: ../../tutorial/interpreter.rst:118
217
225
msgid "For more on interactive mode, see :ref:`tut-interac`."
@@ -249,7 +257,7 @@ msgstr "인코딩을 기본값 외의 것으로 선언하려면, 파일의 첫
249
257
250
258
#: ../../tutorial/interpreter.rst:143
251
259
msgid "# -*- coding: encoding -*-"
252
- msgstr ""
260
+ msgstr "# -*- coding: encoding -*- "
253
261
254
262
#: ../../tutorial/interpreter.rst:145
255
263
msgid "where *encoding* is one of the valid :mod:`codecs` supported by Python."
@@ -263,7 +271,7 @@ msgstr "예를 들어, Windows-1252 인코딩을 사용하도록 선언하려면
263
271
264
272
#: ../../tutorial/interpreter.rst:150
265
273
msgid "# -*- coding: cp1252 -*-"
266
- msgstr ""
274
+ msgstr "# -*- coding: cp1252 -*- "
267
275
268
276
#: ../../tutorial/interpreter.rst:152
269
277
msgid ""
@@ -280,6 +288,8 @@ msgid ""
280
288
"#!/usr/bin/env python3\n"
281
289
"# -*- coding: cp1252 -*-"
282
290
msgstr ""
291
+ "#!/usr/bin/env python3\n"
292
+ "# -*- coding: cp1252 -*-"
283
293
284
294
#: ../../tutorial/interpreter.rst:160
285
295
msgid "Footnotes"
0 commit comments