个人工具

Python 官方简明教程 1

来自Ubuntu中文

Yq-ysy讨论 | 贡献2011年5月20日 (五) 21:47的版本 — 1. 能令您兴趣盎然的Python(正在翻译中)

跳转至: 导航, 搜索

— 1. 能令您兴趣盎然的Python(正在翻译中)

如果您长期在电脑前工作,您也许会希望让某些工作能在电脑上自动完成。例如,在一大堆文本文件里查找和替换某个词语,或者给一批照片重新排序并重命名,又也许您想写一个小型的自定义数据库,或者写一个专用的GUI应用,甚至写一个简单的游戏。

如果您是一个专业的软件开发人员,可能在您不得不使用C/C++/Java库工作时就已经发现,通常“写代码、编译、测试、再编译”这样循环工作的效率太低了,也许您正在为这样的库测试套件和测试代码进行着枯燥乏味的编写任务,或者也许您已经写了一个可以使用扩展语言的程序,然而您却不打算为您的应用程序设计并实施一整套全新的程序语言。

Python正好就是您需要的编程语言。

你可以通过写一个Unix的shell脚本或者Windows的批处理文件来完成一些工作,但shell脚本只擅长于搬弄文件和修改文本数据,并适用于GUI应用和游戏开发。您可以写一个C/C++/Java程序,但它会耗费大量的开发时间却甚至只完成了第一程序的草稿。Python简单易用,兼容于Windows, Mac OS X,和Unix操作系统,将能帮助您更迅速地完成工作。

Python虽然简单易用,但它是一个真正的编程语言。相对于shell脚本或批处理文件,Python对于大型程序提供了更多的结构和支持。另一方面,相对于C语言,Python还提供了更多的错误检查。而且,作为一个非常高层次的语言,它内置有高层次的数据类型,例如灵活的阵列和字典。因为其拥有更通用的数据类型,Python比Awk甚至比Perl更适用于在非常庞大的应用领域中解决难题。

Python允许您拆分您的程序成为模块,以便其他Python程序重复使用。它配备有一个庞大的标准模块大集合,您可以使用它作为您的程序的基础——或者作为您学习Python程序的样例。这其中的某些模块提供了诸如文件输入输出、系统调用、接口,甚至还有像TK这样的用户图形界面工具包。

Python is an interpreted language, which can save you considerable time during program development because no compilation and linking is necessary. The interpreter can be used interactively, which makes it easy to experiment with features of the language, to write throw-away programs, or to test functions during bottom-up program development. It is also a handy desk calculator.

Python enables programs to be written compactly and readably. Programs written in Python are typically much shorter than equivalent C, C++, or Java programs, for several reasons:

  • the high-level data types allow you to express complex operations in a single statement;
  • statement grouping is done by indentation instead of beginning and ending brackets;
  • no variable or argument declarations are necessary.

Python is extensible: if you know how to program in C it is easy to add a new built-in function or module to the interpreter, either to perform critical operations at maximum speed, or to link Python programs to libraries that may only be available in binary form (such as a vendor-specific graphics library). Once you are really hooked, you can link the Python interpreter into an application written in C and use it as an extension or command language for that application.

By the way, the language is named after the BBC show “Monty Python’s Flying Circus” and has nothing to do with reptiles. Making references to Monty Python skits in documentation is not only allowed, it is encouraged!

Now that you are all excited about Python, you’ll want to examine it in some more detail. Since the best way to learn a language is to use it, the tutorial invites you to play with the Python interpreter as you read.

In the next chapter, the mechanics of using the interpreter are explained. This is rather mundane information, but essential for trying out the examples shown later.

The rest of the tutorial introduces various features of the Python language and system through examples, beginning with simple expressions, statements and data types, through functions and modules, and finally touching upon advanced concepts like exceptions and user-defined classes.

————— 返回《 Python 官方教程 》目录 —————
—— 返回《 Python 手册 》总目录 ——