-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathindex.po
More file actions
108 lines (98 loc) · 5.71 KB
/
index.po
File metadata and controls
108 lines (98 loc) · 5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2017, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-11 20:40+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
"Language-Team: Korean (https://python.flowdas.com)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.17.0\n"
#: ../../tutorial/index.rst:5
msgid "The Python Tutorial"
msgstr "파이썬 자습서"
#: ../../tutorial/index.rst:7
msgid ""
"This tutorial is designed for *programmers* that are new to the Python "
"language, **not** *beginners* who are new to programming."
msgstr ""
#: ../../tutorial/index.rst:11
msgid ""
"Python is an easy to learn, powerful programming language. It has "
"efficient high-level data structures and a simple but effective approach "
"to object-oriented programming. Python's elegant syntax and dynamic "
"typing, together with its interpreted nature, make it an ideal language "
"for scripting and rapid application development in many areas on most "
"platforms."
msgstr ""
"파이썬은 배우기 쉬우면서도 강력한 프로그래밍 언어입니다. 효율적인 자료 구조와 객체 지향 프로그래밍에 대한 간단하고도 효과적인 "
"접근법을 제공합니다. 파이썬은 우아한 문법과 동적 타이핑(typing)을 지원하는 인터프리터 언어로서, 대부분 플랫폼과 다양한 문제"
" 영역에서 스크립트 작성과 빠른 응용 프로그램 개발에 이상적인 환경을 제공합니다."
#: ../../tutorial/index.rst:17
msgid ""
"The Python interpreter and the extensive standard library are freely "
"available in source or binary form for all major platforms from the "
"Python web site, https://www.python.org/, and may be freely distributed. "
"The same site also contains distributions of and pointers to many free "
"third party Python modules, programs and tools, and additional "
"documentation."
msgstr ""
"파이썬 인터프리터와 풍부한 표준 라이브러리는 소스나 바이너리 형태로 파이썬 웹 사이트, https://www.python.org/,"
" 에서 무료로 제공되고, 자유롭게 배포할 수 있습니다. 또한 이 사이트에는 제삼자들이 무료로 제공하는 파이썬 모듈, 프로그램과 "
"도구, 추가 문서들의 배포판이나 링크를 포함합니다."
#: ../../tutorial/index.rst:23
msgid ""
"The Python interpreter is easily extended with new functions and data "
"types implemented in C or C++ (or other languages callable from C). "
"Python is also suitable as an extension language for customizable "
"applications."
msgstr ""
"파이썬 인터프리터에는 C 나 C++ (또는 C에서 호출 가능한 다른 언어들)로 구현된 새 함수나 자료 구조를 쉽게 추가할 수 "
"있습니다. 파이썬은 사용자 맞춤화가 가능한 응용 프로그램을 위한 확장 언어로도 적합합니다."
#: ../../tutorial/index.rst:27
#, fuzzy
msgid ""
"This tutorial introduces the reader informally to the basic concepts and "
"features of the Python language and system. Be aware that it expects you "
"to have a basic understanding of programming in general. It helps to have"
" a Python interpreter handy for hands-on experience, but all examples are"
" self-contained, so the tutorial can be read off-line as well."
msgstr ""
"이 학습서는 파이썬 언어와 시스템의 기본 개념과 기능들을 격식 없이 소개합니다. 실습 경험을 위해 파이썬 인터프리터가 있으면 도움이"
" 되지만, 모든 예제가 독립적이기 때문에 오프라인에서 읽기에도 적합합니다."
#: ../../tutorial/index.rst:33
msgid ""
"For a description of standard objects and modules, see :ref:`library-"
"index`. :ref:`reference-index` gives a more formal definition of the "
"language. To write extensions in C or C++, read :ref:`extending-index` "
"and :ref:`c-api-index`. There are also several books covering Python in "
"depth."
msgstr ""
"표준 객체와 모듈에 대한 설명은 :ref:`library-index` 에서 확인하세요. :ref:`reference-index` 는"
" 언어에 대한 좀 더 형식적인 정의를 제공합니다. C 나 C++ 로 확장을 작성하려면 :ref:`extending-index` 와 "
":ref:`c-api-index` 를 참조하세요. 또한 파이썬을 깊이 있게 다룬 책들도 많습니다."
#: ../../tutorial/index.rst:38
msgid ""
"This tutorial does not attempt to be comprehensive and cover every single"
" feature, or even every commonly used feature. Instead, it introduces "
"many of Python's most noteworthy features, and will give you a good idea "
"of the language's flavor and style. After reading it, you will be able to"
" read and write Python modules and programs, and you will be ready to "
"learn more about the various Python library modules described in :ref"
":`library-index`."
msgstr ""
"이 자습서는 포괄적이려고 시도하지 않습니다. 모든 기능을 다루지는 않으며, 이는 자주 사용되는 기능에 있어서도 마찬가지 입니다. "
"대신 파이썬의 가장 주목할 만한 기능들을 소개하여 언어의 맛과 스타일을 잘 느낄 수 있도록 하고 있습니다. 이 학습서를 읽은 후에는"
" 파이썬 모듈과 프로그램을 읽고 쓸 수 있으며, :ref:`library-index` 에 기술된 다양한 파이썬 라이브러리 모듈에 "
"대해 배울 준비가 될 것입니다."
#: ../../tutorial/index.rst:45
msgid "The :ref:`glossary` is also worth going through."
msgstr ":ref:`glossary` 또한 살펴볼 가치가 있습니다."