You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
msgid"A small number of constants live in the built-in namespace. They are:"
26
-
msgstr""
26
+
msgstr"작은 개수의 상수가 내장 이름 공간에 있다. 그것들은:"
27
27
28
28
#:../Doc/library/constants.rst:10
29
29
msgid""
30
30
"The false value of the :class:`bool` type. Assignments to ``False`` are "
31
31
"illegal and raise a :exc:`SyntaxError`."
32
-
msgstr""
32
+
msgstr":class:`bool` 형의 거짓 값. ``False`` 에 대입할 수 없고 :exc:`SyntaxError` 를 일으킨다."
33
33
34
34
#:../Doc/library/constants.rst:16
35
35
msgid""
36
36
"The true value of the :class:`bool` type. Assignments to ``True`` are "
37
37
"illegal and raise a :exc:`SyntaxError`."
38
-
msgstr""
38
+
msgstr":class:`bool` 형의 참값. ``True`` 에 대입할 수 없고 :exc:`SyntaxError` 를 일으킨다."
39
39
40
40
#:../Doc/library/constants.rst:22
41
41
msgid""
42
42
"The sole value of the type ``NoneType``. ``None`` is frequently used to "
43
43
"represent the absence of a value, as when default arguments are not "
44
44
"passed to a function. Assignments to ``None`` are illegal and raise a "
45
45
":exc:`SyntaxError`."
46
-
msgstr""
46
+
msgstr"``NoneType`` 형의 유일한 값. ``None`` 은 기본 인자가 함수에 전달되지 않을 때처럼, 값의 부재를 나타내는 데 자주 사용된다. ``None`` 에 대입할 수 없고 :exc:`SyntaxError` 를 일으킨다."
47
47
48
48
#:../Doc/library/constants.rst:29
49
49
msgid""
@@ -53,7 +53,7 @@ msgid ""
53
53
"the other type; may be returned by the in-place binary special methods "
54
54
"(e.g. :meth:`__imul__`, :meth:`__iand__`, etc.) for the same purpose. Its"
55
55
" truth value is true."
56
-
msgstr""
56
+
msgstr"연산이 다른 형에 대해 구현되지 않았음을 나타내기 위해, 이 항 특수 메서드(예를 들어, :meth:`__eq__`, :meth:`__lt__`, :meth:`__add__`, :meth:`__rsub__` 등)가 돌려줘야 하는 특별한 값; 같은 목적으로 증분 이 항 특수 메서드(예를 들어, :meth:`__imul__`, :meth:`__iand__` 등)가 반환할 수 있다. 논릿값은 참이다."
57
57
58
58
#:../Doc/library/constants.rst:38
59
59
msgid""
@@ -64,61 +64,60 @@ msgid ""
64
64
"Incorrectly returning ``NotImplemented`` will result in a misleading "
65
65
"error message or the ``NotImplemented`` value being returned to Python "
66
66
"code."
67
-
msgstr""
67
+
msgstr"이 항 (또는 증분) 메서드가 ``NotImplemented`` 를 반환하면 인터프리터는 다른 형(또는 연산자에 따라 다른 폴백)에서 뒤집힌 연산을 시도한다. 모든 시도가 ``NotImplemented`` 를 반환하면, 인터프리터는 적절한 예외를 발생시킨다. 부정확하게 ``NotImplemented`` 를 반환하면 오해의 소지가 있는 에러 메시지가 나오거나 파이썬 코드에 ``NotImplemented`` 값이 반환된다."
68
68
69
69
#:../Doc/library/constants.rst:45
70
70
msgid"See :ref:`implementing-the-arithmetic-operations` for examples."
71
-
msgstr""
71
+
msgstr"예는 :ref:`implementing-the-arithmetic-operations` 에 있다."
72
72
73
73
#:../Doc/library/constants.rst:49
74
74
msgid""
75
75
"``NotImplementedError`` and ``NotImplemented`` are not interchangeable, "
76
76
"even though they have similar names and purposes. See "
77
77
":exc:`NotImplementedError` for details on when to use it."
78
-
msgstr""
78
+
msgstr"``NotImplementedError`` 와 ``NotImplemented`` 는 비슷한 이름과 목적이 있지만, 바꿔쓸 수 없다. 언제 사용하는지 자세히 알고 싶다면 :exc:`NotImplementedError` 를 보라."
79
79
80
80
#:../Doc/library/constants.rst:56
81
81
msgid""
82
82
"The same as ``...``. Special value used mostly in conjunction with "
83
83
"extended slicing syntax for user-defined container data types."
84
-
msgstr""
84
+
msgstr"``...`` 와 같다. 주로 사용자 정의 컨테이너 데이터형에 대한 확장 슬라이스 문법과 함께 사용되는 특수 값."
85
85
86
86
#:../Doc/library/constants.rst:62
87
87
msgid""
88
88
"This constant is true if Python was not started with an :option:`-O` "
89
89
"option. See also the :keyword:`assert` statement."
90
-
msgstr""
90
+
msgstr"이 상수는 파이썬이 :option:`-O` 옵션으로 시작되지 않았다면 참이 된다. :keyword:`assert` 문도 볼 필요가 있다."
91
91
92
92
#:../Doc/library/constants.rst:68
93
93
msgid""
94
94
"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__`"
95
95
" cannot be reassigned (assignments to them, even as an attribute name, "
96
96
"raise :exc:`SyntaxError`), so they can be considered\"true\" constants."
97
-
msgstr""
97
+
msgstr":data:`None`, :data:`False`, :data:`True` 그리고 :data:`__debug__` 은 다시 대입할 수 없다 (이것들을 대입하면, 설사 어트리뷰트 이름으로 사용해도, :exc:`SyntaxError` 를 일으킨다). 그래서 이것들은\"진짜\" 상수로 간주 될 수 있다."
98
98
99
99
#:../Doc/library/constants.rst:74
100
100
msgid"Constants added by the :mod:`site` module"
101
-
msgstr""
101
+
msgstr":mod:`site` 모듈에 의해 추가된 상수들"
102
102
103
103
#:../Doc/library/constants.rst:76
104
104
msgid""
105
105
"The :mod:`site` module (which is imported automatically during startup, "
106
106
"except if the :option:`-S` command-line option is given) adds several "
107
107
"constants to the built-in namespace. They are useful for the interactive"
108
108
" interpreter shell and should not be used in programs."
109
-
msgstr""
109
+
msgstr":mod:`site` 모듈(:option:`-S` 명령행 옵션이 주어진 경우를 제외하고는, 시작할 때 자동으로 임포트 된다)은 내장 이름 공간에 여러 상수를 추가한다. 대화형 인터프리터 셸에 유용하고 프로그램에서 사용해서는 안 된다."
110
110
111
111
#:../Doc/library/constants.rst:84
112
112
msgid""
113
113
"Objects that when printed, print a message like\"Use quit() or Ctrl-D "
114
114
"(i.e. EOF) to exit\", and when called, raise :exc:`SystemExit` with the "
115
115
"specified exit code."
116
-
msgstr""
116
+
msgstr"인쇄될 때,\"Use quit() or Ctrl-D (i.e. EOF) to exit\"과 같은 메시지를 인쇄하고, 호출될 때, 지정된 종료 코드로 :exc:`SystemExit` 를 일으키는 객체."
117
117
118
118
#:../Doc/library/constants.rst:92
119
119
msgid""
120
120
"Objects that when printed, print a message like\"Type license() to see "
121
121
"the full license text\", and when called, display the corresponding text "
122
122
"in a pager-like fashion (one screen at a time)."
123
-
msgstr""
124
-
123
+
msgstr"인쇄될 때\"Type license() to see the full license text\"와 같은 메시지를 인쇄하고, 호출될 때 해당 텍스트를 페이지 생성기와 같은 방식(한 번에 한 화면씩)으로 표시하는 객체."