# SOME DESCRIPTIVE TITLE. # Copyright (C) 2001-2025, Python Software Foundation # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # # Translators: # Rafael Fontenelle , 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.12\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-25 16:03+0000\n" "PO-Revision-Date: 2025-07-18 19:59+0000\n" "Last-Translator: Rafael Fontenelle , 2025\n" "Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../../tutorial/index.rst:5 msgid "The Python Tutorial" msgstr "Python 教程" #: ../../tutorial/index.rst:7 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 "" "Python 是一门易于学习、功能强大的编程语言。它提供了高效的高级数据结构,还能简单有效地面向对象编程。Python " "优雅的语法和动态类型以及解释型语言的本质,使它成为多数平台上写脚本和快速开发应用的理想语言。" #: ../../tutorial/index.rst:13 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 "" "Python 官网(https://www.python.org/)上免费提供了 Python " "解释器和扩展的标准库,包括源码和适用于各操作系统的机器码形式,并可自由地分发。Python 官网还包含许多免费的第三方 Python " "模块、程序和工具发布包及文档链接。" #: ../../tutorial/index.rst:19 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 "" "Python 解释器易于扩展,使用 C 或 C++(或其他 C 能调用的语言)即可为 Python 扩展新功能和数据类型。Python " "也可用作定制软件中的扩展程序语言。" #: ../../tutorial/index.rst:23 msgid "" "This tutorial introduces the reader informally to the basic concepts and " "features of the Python language and system. 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 "" "本教程只是简单介绍了 Python 语言概念和功能。读者在阅读本教程时最好使用 Python " "解释器以便随时动手练习。本教程中的所有示例都是相互独立的并可离线阅读。" #: ../../tutorial/index.rst:28 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`。此外,深入讲解 Python " "的书籍也有很多。" #: ../../tutorial/index.rst:33 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 "" "本教程对每一个功能的介绍并不完整,甚至没有涉及全部常用功能,只是介绍了 Python 中最值得学习的功能,旨在让读者快速感受一下 Python " "的特色。学完本教程的读者可以阅读和编写 Python 模块和程序,也可以继续学习 :ref:`library-index`。" #: ../../tutorial/index.rst:40 msgid "The :ref:`glossary` is also worth going through." msgstr "强烈推荐阅读 :ref:`glossary`。"