13. What Now?现在怎么办?

Reading this tutorial has probably reinforced your interest in using Python — you should be eager to apply Python to solving your real-world problems. 阅读本教程可能增强了您对使用Python的兴趣——您应该渴望将Python应用于解决实际问题。Where should you go to learn more?你应该去哪里了解更多?

This tutorial is part of Python’s documentation set. 本教程是Python文档集的一部分。Some other documents in the set are:该系列中的其他一些文件包括:

  • The Python Standard LibraryPython标准库:

    You should browse through this manual, which gives complete (though terse) reference material about types, functions, and the modules in the standard library. 您应该浏览本手册,它提供了有关类型、功能和标准库中模块的完整(尽管简洁)参考资料。The standard Python distribution includes a lot of additional code. 标准的Python发行版包含许多附加代码。There are modules to read Unix mailboxes, retrieve documents via HTTP, generate random numbers, parse command-line options, write CGI programs, compress data, and many other tasks. 有一些模块可以读取Unix邮箱、通过HTTP检索文档、生成随机数、解析命令行选项、编写CGI程序、压缩数据以及许多其他任务。Skimming through the Library Reference will give you an idea of what’s available.略读库参考资料会让你了解库有哪些资料。

  • Installing Python Modules安装Python模块 explains how to install additional modules written by other Python users.解释如何安装其他Python用户编写的其他模块。

  • The Python Language ReferencePython语言参考: A detailed explanation of Python’s syntax and semantics. :Python语法和语义的详细解释。It’s heavy reading, but is useful as a complete guide to the language itself.这本书阅读量很大,但作为语言本身的完整指南很有用。

More Python resources:更多Python资源:

  • https://www.python.org: The major Python web site. :主要的Python网站。It contains code, documentation, and pointers to Python-related pages around the web. 它包含代码、文档和指向web上Python相关页面的指针。This web site is mirrored in various places around the world, such as Europe, Japan, and Australia; a mirror may be faster than the main site, depending on your geographical location.这个网站反映了世界各地的情况,如欧洲、日本和澳大利亚;镜像可能比主站点快,这取决于您的地理位置。

  • https://docs.python.org: Fast access to Python’s documentation.:快速访问Python文档。

  • https://pypi.org: The Python Package Index, previously also nicknamed the Cheese Shop 1, is an index of user-created Python modules that are available for download. :Python包索引,以前也被昵称为Cheese Shop 1,是用户创建的Python模块的索引,可供下载。Once you begin releasing code, you can register it here so that others can find it.一旦你开始发布代码,你可以在这里注册,这样其他人就可以找到它。

  • https://code.activestate.com/recipes/langs/python/: The Python Cookbook is a sizable collection of code examples, larger modules, and useful scripts. :Python Cookbook是大量代码示例、较大模块和有用脚本的集合。Particularly notable contributions are collected in a book also titled Python Cookbook (O’Reilly & Associates, ISBN 0-596-00797-3.)特别值得一提的贡献收录在一本名为《Python Cookbook》(O’Reilly and Associates,ISBN 0-596-00797-3)的书中

  • http://www.pyvideo.org collects links to Python-related videos from conferences and user-group meetings.从会议和用户组会议收集到Python相关视频的链接。

  • https://scipy.org: The Scientific Python project includes modules for fast array computations and manipulations plus a host of packages for such things as linear algebra, Fourier transforms, non-linear solvers, random number distributions, statistical analysis and the like.:Scientific Python项目包括用于快速数组计算和操作的模块,以及用于线性代数、傅立叶变换、非线性求解器、随机数分布、统计分析等的大量软件包。

For Python-related questions and problem reports, you can post to the newsgroup comp.lang.python, or send them to the mailing list at python-list@python.org. 对于与Python相关的问题和问题报告,您可以将其发布到新闻组comp.lang.python,或将其发送到位于python-list@python.orgThe newsgroup and mailing list are gatewayed, so messages posted to one will automatically be forwarded to the other. 新闻组和邮件列表是网关连接的,因此发送到其中一个的消息将自动转发到另一个。There are hundreds of postings a day, asking (and answering) questions, suggesting new features, and announcing new modules. 每天有数百条帖子,询问(和回答)问题,建议新功能,并宣布新模块。Mailing list archives are available at https://mail.python.org/pipermail/.邮件列表档案可在https://mail.python.org/pipermail/

Before posting, be sure to check the list of Frequently Asked Questions (also called the FAQ). 发帖前,一定要查看常见问题列表(也称为FAQ)。The FAQ answers many of the questions that come up again and again, and may already contain the solution for your problem.常见问题解答回答了许多反复出现的问题,可能已经包含了解决问题的方法。

Footnotes

1

“Cheese Shop” is a Monty Python’s sketch: a customer enters a cheese shop, but whatever cheese he asks for, the clerk says it’s missing.这是一条巨蟒的素描:一位顾客走进一家奶酪店,但不管他要什么奶酪,店员都说不见了。