# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2017, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR , 2017.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-07-08 11:36+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh \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.5.1\n"
#: ../Doc/tutorial/stdlib.rst:5
msgid "Brief Tour of the Standard Library"
msgstr "íì¤ ë¼ì´ë¸ë¬ë¦¬ ëë¬ë³´ê¸°"
#: ../Doc/tutorial/stdlib.rst:11
msgid "Operating System Interface"
msgstr "ì´ì ì²´ì ì¸í°íì´ì¤"
#: ../Doc/tutorial/stdlib.rst:13
msgid ""
"The :mod:`os` module provides dozens of functions for interacting with "
"the operating system::"
msgstr ":mod:`os` 모ëì ì´ì ì²´ì ì ìí¸ ìì©í기 ìí ìì ê°ì§ í¨ìë¤ì ì ê³µí©ëë¤::"
#: ../Doc/tutorial/stdlib.rst:23
msgid ""
"Be sure to use the ``import os`` style instead of ``from os import *``. "
"This will keep :func:`os.open` from shadowing the built-in :func:`open` "
"function which operates much differently."
msgstr ""
"``from os import *`` ëì ì ``import os`` ì¤íì¼ì ì¬ì©í´ì¼ í©ëë¤. ê·¸ëì¼ :func:`os.open`"
" ì´ ë´ì¥ :func:`open` ì ê°ë¦¬ë ê²ì í¼í ì ìëë°, ë í¨ìë ì주 ë¤ë¥´ê² ëìí©ëë¤."
#: ../Doc/tutorial/stdlib.rst:29
msgid ""
"The built-in :func:`dir` and :func:`help` functions are useful as "
"interactive aids for working with large modules like :mod:`os`::"
msgstr ""
":mod:`os` ì ê°ì í° ëª¨ëê³¼ ìì
í ë, ë´ì¥ :func:`dir` ê³¼ :func:`help` í¨ìë ëíí ëì°ë¯¸ë¡ "
"ì¸ëª¨ê° ììµëë¤."
#: ../Doc/tutorial/stdlib.rst:38
msgid ""
"For daily file and directory management tasks, the :mod:`shutil` module "
"provides a higher level interface that is easier to use::"
msgstr "ì¼ìì ì¸ íì¼ê³¼ ëë í°ë¦¬ ê´ë¦¬ ìì
ì ìí´, :mod:`shutil` 모ëì ì¬ì©í기 ì¬ì´ ë ê³ ìì¤ì ì¸í°íì´ì¤ë¥¼ ì ê³µí©ëë¤::"
#: ../Doc/tutorial/stdlib.rst:51
msgid "File Wildcards"
msgstr "íì¼ ìì¼ëì¹´ë"
#: ../Doc/tutorial/stdlib.rst:53
msgid ""
"The :mod:`glob` module provides a function for making file lists from "
"directory wildcard searches::"
msgstr ":mod:`glob` 모ëì ëë í°ë¦¬ ìì¼ëì¹´ë ê²ìì¼ë¡ íì¼ ëª©ë¡ì ë§ëë í¨ì를 ì ê³µí©ëë¤::"
#: ../Doc/tutorial/stdlib.rst:64
msgid "Command Line Arguments"
msgstr "ëª
ë ¹í ì¸ì"
#: ../Doc/tutorial/stdlib.rst:66
msgid ""
"Common utility scripts often need to process command line arguments. "
"These arguments are stored in the :mod:`sys` module's *argv* attribute as"
" a list. For instance the following output results from running ``python"
" demo.py one two three`` at the command line::"
msgstr ""
"ì¼ë°ì ì¸ ì í¸ë¦¬í° ì¤í¬ë¦½í¸ë ì¢
ì¢
ëª
ë ¹í ì¸ì를 ì²ë¦¬í´ì¼ í íìê° ììµëë¤. ì´ ì¸ìë¤ì :mod:`sys` 모ëì *argv* "
"ì´í¸ë¦¬ë·°í¸ì 리ì¤í¸ë¡ ì ì¥ë©ëë¤. ì를 ë¤ì´, ëª
ë ¹íìì ``python demo.py one two three`` 를 ì¤ííë©´ "
"ë¤ìê³¼ ê°ì ê²°ê³¼ê° ì¶ë ¥ë©ëë¤::"
#: ../Doc/tutorial/stdlib.rst:75
msgid ""
"The :mod:`getopt` module processes *sys.argv* using the conventions of "
"the Unix :func:`getopt` function. More powerful and flexible command "
"line processing is provided by the :mod:`argparse` module."
msgstr ""
":mod:`getopt` 모ëì ì ëì¤ :func:`getopt` í¨ìì ê·ì¹ì ì¬ì©í´ì *sys.argv* 를 ì²ë¦¬í©ëë¤. ë "
"ê°ë ¥íê³ ì ì°í ëª
ë ¹í ì²ë¦¬ë :mod:`argparse` 모ëìì ì ê³µë©ëë¤."
#: ../Doc/tutorial/stdlib.rst:83
msgid "Error Output Redirection and Program Termination"
msgstr "ìë¬ ì¶ë ¥ 리ëë ì
ê³¼ íë¡ê·¸ë¨ ì¢
ë£"
#: ../Doc/tutorial/stdlib.rst:85
msgid ""
"The :mod:`sys` module also has attributes for *stdin*, *stdout*, and "
"*stderr*. The latter is useful for emitting warnings and error messages "
"to make them visible even when *stdout* has been redirected::"
msgstr ""
":mod:`sys` 모ëì *stdin*, *stdout*, *stderr* ì´í¸ë¦¬ë·°í¸ë ê°ê³ ììµëë¤. ê°ì¥ ë§ì§ë§ ê²ì "
"*stdout* ì´ ë¦¬ëë í¸ ëìì ëë ë³¼ ì ìë ê²½ê³ ì ìë¬ ë©ìì§ë¤ì ì¶ë ¥íëë° ì¸ëª¨ê° ììµëë¤::"
#: ../Doc/tutorial/stdlib.rst:92
msgid "The most direct way to terminate a script is to use ``sys.exit()``."
msgstr "ì¤í¬ë¦½í¸ë¥¼ ì¢
ë£íë ê°ì¥ ì§ì ì ì¸ ë°©ë²ì ``sys.exit()`` 를 ì°ë ê²ì
ëë¤."
#: ../Doc/tutorial/stdlib.rst:98
msgid "String Pattern Matching"
msgstr "문ìì´ í¨í´ 매ì¹"
#: ../Doc/tutorial/stdlib.rst:100
msgid ""
"The :mod:`re` module provides regular expression tools for advanced "
"string processing. For complex matching and manipulation, regular "
"expressions offer succinct, optimized solutions::"
msgstr ""
":mod:`re` 모ëì ê³ ê¸ ë¬¸ìì´ ì²ë¦¬ë¥¼ ìí ì ê·ì ë구ë¤ì ì ê³µí©ëë¤. ë³µì¡í 매ì¹ê³¼ ì¡°ìì ìí´, ì ê·ìì ê°ê²°íê³ "
"ìµì íë ì루ì
ì ì ê³µí©ëë¤::"
#: ../Doc/tutorial/stdlib.rst:110
msgid ""
"When only simple capabilities are needed, string methods are preferred "
"because they are easier to read and debug::"
msgstr "ë¨ì§ ê°ë¨í 기ë¥ë§ íìí ê²½ì°ìë, 문ìì´ ë©ìëë¤ì´ ì í¸ëëë° ì½ê¸° ì½ê³ ëë²ê¹
ì´ ì½ê¸° ë문ì
ëë¤::"
#: ../Doc/tutorial/stdlib.rst:120
msgid "Mathematics"
msgstr "ìí"
#: ../Doc/tutorial/stdlib.rst:122
msgid ""
"The :mod:`math` module gives access to the underlying C library functions"
" for floating point math::"
msgstr ":mod:`math` 모ëì ë¶ë ììì ì°ì°ì ìí íë¶ C ë¼ì´ë¸ë¬ë¦¬ í¨ìë¤ì ëí ì¡ì¸ì¤ë¥¼ ì ê³µí©ëë¤."
#: ../Doc/tutorial/stdlib.rst:131
msgid "The :mod:`random` module provides tools for making random selections::"
msgstr ":mod:`random` 모ëì 무ìì ì íì í ì ìë ë구ë¤ì ì ê³µí©ëë¤::"
#: ../Doc/tutorial/stdlib.rst:143
msgid ""
"The :mod:`statistics` module calculates basic statistical properties (the"
" mean, median, variance, etc.) of numeric data::"
msgstr ":mod:`statistics` 모ëì ìì¹ ë°ì´í°ì 기본ì ì¸ íµê³ì í¹ì±ë¤ì (íê· , ì¤ê°ê°, ë¶ì°, ë±ë±) ê³ì°í©ëë¤."
#: ../Doc/tutorial/stdlib.rst:155
msgid ""
"The SciPy project has many other modules for "
"numerical computations."
msgstr "SciPy íë¡ì í¸ ë ë¤ë¥¸ ìì¹ ê³ì°ì© 모ëë¤ì ë§ì´ ê°ê³ ììµëë¤."
#: ../Doc/tutorial/stdlib.rst:161
msgid "Internet Access"
msgstr "ì¸í°ë· ì¡ì¸ì¤"
#: ../Doc/tutorial/stdlib.rst:163
msgid ""
"There are a number of modules for accessing the internet and processing "
"internet protocols. Two of the simplest are :mod:`urllib.request` for "
"retrieving data from URLs and :mod:`smtplib` for sending mail::"
msgstr ""
"ì¸í°ë·ì ì¡ì¸ì¤íê³ ì¸í°ë· íë¡í ì½ë¤ì ì²ë¦¬íë ë§ì 모ëì´ ììµëë¤. ê°ì¥ ê°ë¨í ë ê°ë URLìì ë°ì´í°ë¥¼ ì½ì´ì¤ë "
":mod:`urllib.request` ì ë©ì¼ì ë³´ë´ë :mod:`smtplib` ì
ëë¤::"
#: ../Doc/tutorial/stdlib.rst:186
msgid "(Note that the second example needs a mailserver running on localhost.)"
msgstr "(ë ë²ì§¸ ìë localhost ìì ë©ì¼ ìë²ê° ì¤íëê³ ìì´ì¼ íë¤ë ê²ì 주ìíì¸ì.)"
#: ../Doc/tutorial/stdlib.rst:192
msgid "Dates and Times"
msgstr "ë ì§ì ìê°"
#: ../Doc/tutorial/stdlib.rst:194
msgid ""
"The :mod:`datetime` module supplies classes for manipulating dates and "
"times in both simple and complex ways. While date and time arithmetic is "
"supported, the focus of the implementation is on efficient member "
"extraction for output formatting and manipulation. The module also "
"supports objects that are timezone aware. ::"
msgstr ""
":mod:`datetime` 모ëì ë ì§ì ìê°ì ì¡°ìíë í´ëì¤ë¤ì ì ê³µíëë°, ê°ë¨í ë°©ë²ê³¼ ë³µì¡í ë°©ë² ëª¨ë ì ê³µí©ëë¤. "
"ë ì§ì ìê° ì°ì ì´ ì§ìëì§ë§, 구íì ì´ì ì ì¶ë ¥ í¬ë§¤í
ê³¼ ì¡°ìì ìí´ í¨ì¨ì ì¼ë¡ 멤ë²ë¥¼ ì¶ì¶íë ë°ì ë§ì¶°ì ¸ ììµëë¤. 모ëì "
"ìê°ë를 ê³ ë ¤íë ê°ì²´ë¤ë ì§ìí©ëë¤. ::"
#: ../Doc/tutorial/stdlib.rst:218
msgid "Data Compression"
msgstr "ë°ì´í° ìì¶"
#: ../Doc/tutorial/stdlib.rst:220
msgid ""
"Common data archiving and compression formats are directly supported by "
"modules including: :mod:`zlib`, :mod:`gzip`, :mod:`bz2`, :mod:`lzma`, "
":mod:`zipfile` and :mod:`tarfile`. ::"
msgstr ""
"ì¼ë°ì ì¸ ë°ì´í° ë³´ê´ ë° ìì¶ íìë¤ì ë¤ìê³¼ ê°ì 모ëë¤ì´ ì§ì ì§ìí©ëë¤: :mod:`zlib`, :mod:`gzip`, "
":mod:`bz2`, :mod:`lzma`, :mod:`zipfile`, :mod:`tarfile`. ::"
#: ../Doc/tutorial/stdlib.rst:240
msgid "Performance Measurement"
msgstr "ì±ë¥ 측ì "
#: ../Doc/tutorial/stdlib.rst:242
msgid ""
"Some Python users develop a deep interest in knowing the relative "
"performance of different approaches to the same problem. Python provides "
"a measurement tool that answers those questions immediately."
msgstr ""
"ì¼ë¶ íì´ì¬ ì¬ì©ìë¤ì ê°ì 문ì ì ëí ë¤ë¥¸ ì ê·¼ë²ë¤ì ìëì ì¸ ì±ë¥ì íì
íëë° ê¹ì ê´ì¬ì ëê³ ììµëë¤. íì´ì¬ì ì´ë° "
"ì§ë¬¸ë¤ì ì¦ì ëµì 주ë 측ì ë구를 ì ê³µí©ëë¤."
#: ../Doc/tutorial/stdlib.rst:246
msgid ""
"For example, it may be tempting to use the tuple packing and unpacking "
"feature instead of the traditional approach to swapping arguments. The "
":mod:`timeit` module quickly demonstrates a modest performance "
"advantage::"
msgstr ""
"ì를 ë¤ì´, ì¸ìë¤ì ë§êµííë ì íµì ì¸ ë°©ì ëì ì, íí í¨í¹ê³¼ ì¸ í¨í¹ì ì¬ì©íê³ ì íë ì í¹ì ëë ì ììµëë¤. "
":mod:`timeit` 모ëì ì ë¹í ì±ë¥ ì´ì ì ì ìíê² ë³´ì¬ì¤ëë¤::"
#: ../Doc/tutorial/stdlib.rst:256
msgid ""
"In contrast to :mod:`timeit`'s fine level of granularity, the "
":mod:`profile` and :mod:`pstats` modules provide tools for identifying "
"time critical sections in larger blocks of code."
msgstr ""
":mod:`timeit` ì ì ë°ëìë ëì¡°ì ì¼ë¡, :mod:`profile` ê³¼ :mod:`pstats` 모ëì í° ë¸ë¡ì "
"ì½ëìì ìê° ìê³ ì¹ì
ì ìë³í기 ìí ë구ë¤ì ì ê³µí©ëë¤."
#: ../Doc/tutorial/stdlib.rst:264
msgid "Quality Control"
msgstr "íì§ ê´ë¦¬"
#: ../Doc/tutorial/stdlib.rst:266
msgid ""
"One approach for developing high quality software is to write tests for "
"each function as it is developed and to run those tests frequently during"
" the development process."
msgstr ""
"ê³ íì§ì ìíí¸ì¨ì´ë¥¼ ê°ë°íë í ê°ì§ ì ê·¼ë²ì ê°ë°ëë ê° í¨ìì ëí í
ì¤í¸ë¥¼ ìì±íê³ , ê·¸ê²ë¤ì ê°ë° íë¡ì¸ì¤ ì¤ì ì주 "
"ì¤ííë ê²ì
ëë¤."
#: ../Doc/tutorial/stdlib.rst:270
msgid ""
"The :mod:`doctest` module provides a tool for scanning a module and "
"validating tests embedded in a program's docstrings. Test construction "
"is as simple as cutting-and-pasting a typical call along with its results"
" into the docstring. This improves the documentation by providing the "
"user with an example and it allows the doctest module to make sure the "
"code remains true to the documentation::"
msgstr ""
":mod:`doctest` 모ëì 모ëì íì´ë³´ê³ íë¡ê·¸ë¨ì ë
ì¤í¸ë§ë¤ì ë´ì¥ë í
ì¤í¸ë¤ì ê²ì¬íë ë구를 ì ê³µí©ëë¤. í
ì¤í¸ "
"ë§ë¤ê¸°ë íë²í í¸ì¶ì ê·¸ ê²°ê³¼ì í¨ê» ë
ì¤í¸ë§ì¼ë¡ ë³µì¬í´ì ë¶ì¬ë£ê¸°ë¥¼ íë ìì¤ì¼ë¡ ê°ë¨í´ì§ëë¤. ì¬ì©ììê² ìì 를 í¨ê» ì ê³µí´ì"
" ì¤ëª
ì를 ê°ì íê³ , doctest 모ëì´ ì¤ëª
ììì ì½ëê° ì¬ì í ì¬ì¤ì¸ì§ íì¸íëë¡ í©ëë¤."
#: ../Doc/tutorial/stdlib.rst:288
msgid ""
"The :mod:`unittest` module is not as effortless as the :mod:`doctest` "
"module, but it allows a more comprehensive set of tests to be maintained "
"in a separate file::"
msgstr ""
":mod:`unittest` 모ëì :mod:`doctest` 모ëë§í¼ ì¬ì´ ê²ì ìëì§ë§, ëì± í¬ê´ì ì¸ í
ì¤í¸ ì§í©ì ë³ëì "
"íì¼ë¡ ê´ë¦¬í ì ìê² í©ëë¤::"
#: ../Doc/tutorial/stdlib.rst:310
msgid "Batteries Included"
msgstr "ë°°í°ë¦¬ê° í¬í¨ë©ëë¤"
#: ../Doc/tutorial/stdlib.rst:312
msgid ""
"Python has a \"batteries included\" philosophy. This is best seen "
"through the sophisticated and robust capabilities of its larger packages."
" For example:"
msgstr ""
"íì´ì¬ì \"ë°°í°ë¦¬ê° í¬í¨ë©ëë¤\" ì² íì ê°ê³ ììµëë¤. ì´ë ë í° í¨í¤ì§ì ì êµíê³ ê°ë ¥í 기ë¥ì íµí´ ê°ì¥ ì ëíë©ëë¤. "
"ì를 ë¤ì´:"
#: ../Doc/tutorial/stdlib.rst:315
msgid ""
"The :mod:`xmlrpc.client` and :mod:`xmlrpc.server` modules make "
"implementing remote procedure calls into an almost trivial task. Despite"
" the modules names, no direct knowledge or handling of XML is needed."
msgstr ""
":mod:`xmlrpc.client` ì :mod:`xmlrpc.server` 모ëì ì격 íë¡ìì í¸ì¶ì 구ííë ì¼ì ê±°ì "
"ì¬ìí ì¼ë¡ ë§ëëë¤. 모ëì ì´ë¦ìë ë¶êµ¬íê³ , XMLì ëí ì§ì ì ì¸ ì§ìì´ë ì²ë¦¬ê° íìíì§ ììµëë¤."
#: ../Doc/tutorial/stdlib.rst:319
msgid ""
"The :mod:`email` package is a library for managing email messages, "
"including MIME and other :rfc:`2822`-based message documents. Unlike "
":mod:`smtplib` and :mod:`poplib` which actually send and receive "
"messages, the email package has a complete toolset for building or "
"decoding complex message structures (including attachments) and for "
"implementing internet encoding and header protocols."
msgstr ""
":mod:`email` í¨í¤ì§ë MIME ë° ê¸°í :rfc:`2822` ê¸°ë° ë©ìì§ ë¬¸ì를 í¬í¨íë ì ì ë©ì¼ ë©ìì§ë¥¼ ê´ë¦¬í기 ìí "
"ë¼ì´ë¸ë¬ë¦¬ì
ëë¤. ì¤ì ë¡ ë©ìì§ë¥¼ ë³´ë´ê³ ë°ë :mod:`smtplib` ì :mod:`poplib` ìë ë¬ë¦¬, email "
"í¨í¤ì§ë ë³µì¡í ë©ìì§ êµ¬ì¡° (ì²¨ë¶ íì¼ í¬í¨) 를 ìì±íê±°ë í´ë
íê³ ì¸í°ë· ì¸ì½ë©ê³¼ í¤ë íë¡í ì½ì 구íí기 ìí ìë²½í ë구 "
"ìì를 ê°ì§ê³ ììµëë¤."
#: ../Doc/tutorial/stdlib.rst:326
msgid ""
"The :mod:`json` package provides robust support for parsing this popular "
"data interchange format. The :mod:`csv` module supports direct reading "
"and writing of files in Comma-Separated Value format, commonly supported "
"by databases and spreadsheets. XML processing is supported by the "
":mod:`xml.etree.ElementTree`, :mod:`xml.dom` and :mod:`xml.sax` packages."
" Together, these modules and packages greatly simplify data interchange "
"between Python applications and other tools."
msgstr ""
":mod:`json` í¨í¤ì§ë ë리 ì¬ì©ëë ë°ì´í° êµí íìì íì±í기ìí ê°ë ¥í ì§ìì ì ê³µí©ëë¤. :mod:`csv` 모ëì "
"ë°ì´í°ë² ì´ì¤ì ì¤íë ëìí¸ìì ì¼ë°ì ì¼ë¡ ì§ìëë ì¼íë¡ êµ¬ë¶ë ê° íìì¼ë¡ íì¼ì ì§ì ì½ê³ ì¸ ì ìëë¡ ì§ìí©ëë¤. XML "
"ì²ë¦¬ë :mod:`xml.etree.ElementTree`, :mod:`xml.dom` ë° :mod:`xml.sax` í¨í¤ì§ì ìí´"
" ì§ìë©ëë¤. ì´ë¬í 모ëê³¼ í¨í¤ì§ë¥¼ í¨ê» ì¬ì©íë©´ íì´ì¬ ìì© íë¡ê·¸ë¨ê³¼ ë¤ë¥¸ ë구 ê°ì ë°ì´í° êµíì´ í¬ê² ë¨ìí´ì§ëë¤."
#: ../Doc/tutorial/stdlib.rst:335
msgid ""
"The :mod:`sqlite3` module is a wrapper for the SQLite database library, "
"providing a persistent database that can be updated and accessed using "
"slightly nonstandard SQL syntax."
msgstr ""
":mod:`sqlite3` 모ëì SQLite ë°ì´í°ë² ì´ì¤ ë¼ì´ë¸ë¬ë¦¬ì ëí¼ì¸ë°, ì½ê° ë¹íì¤ SQL 구문ì ì¬ì©íì¬ ì
ë°ì´í¸ëê³ "
"ì¡ì¸ì¤ ë ì ìë í¼ìì¤í´í¸ ë°ì´í°ë² ì´ì¤ë¥¼ ì ê³µí©ëë¤."
#: ../Doc/tutorial/stdlib.rst:339
msgid ""
"Internationalization is supported by a number of modules including "
":mod:`gettext`, :mod:`locale`, and the :mod:`codecs` package."
msgstr ""
"êµì íë :mod:`gettext`, :mod:`locale`, ê·¸ë¦¬ê³ :mod:`codecs` í¨í¤ì§ë¥¼ í¬í¨í ë§ì 모ëì ìí´ "
"ì§ìë©ëë¤."