Whetting Your Appetite

[吊你的胃口]...

这里就直接原文奉上了...

If you do much work on computers, eventually you find that there’s some task you’d like to automate. For example, you may wish to perform a search-and-replace over a large number of text files, or rename and rearrange a bunch of photo files in a complicated way. Perhaps you’d like to write a small custom database, or a specialized GUI application, or a simple game.

If you’re a professional software developer, you may have to work with several C/C++/Java libraries but find the usual write/compile/test/re-compile cycle is too slow. Perhaps you’re writing a test suite for such a library and find writing the testing code a tedious task. Or maybe you’ve written a program that could use an extension language, and you don’t want to design and implement a whole new language for your application.

Python is just the language for you.

You could write a Unix shell script or Windows batch files for some of these tasks, but shell scripts are best at moving around files and changing text data, not well-suited for GUI applications or games. You could write a C/C++/Java program, but it can take a lot of development time to get even a first-draft program. Python is simpler to use, available on Windows, Mac OS X, and Unix operating systems, and will help you get the job done more quickly.

Python is simple to use, but it is a real programming language, offering much more structure and support for large programs than shell scripts or batch files can offer. On the other hand, Python also offers much more error checking than C, and, being a very-high-level language, it has high-level data types built in, such as flexible arrays and dictionaries. Because of its more general data types Python is applicable to a much larger problem domain than Awk or even Perl, yet many things are at least as easy in Python as in those languages.

Python allows you to split your program into modules that can be reused in other Python programs. It comes with a large collection of standard modules that you can use as the basis of your programs — or as examples to start learning to program in Python. Some of these modules provide things like file I/O, system calls, sockets, and even interfaces to graphical user interface toolkits like 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.

最新文章

  1. javascript中this
  2. ORACLE清理、截断监听日志文件(listener.log)
  3. C#窗体 LISTVIEW
  4. 《c程序设计语言》读书笔记--首次输入不能是空符;最多10个字符
  5. CodeForces 560B Gerald is into Art
  6. 刚安装完jdk和eclipse需要配置什么?
  7. 优化sql,返回行数少情况下,NL比hash快好多
  8. shell脚本中的括号和实例
  9. 用Visual Studio创建gtest动态链接库工程
  10. PHP判断文章里是否有图片
  11. 第二次项目冲刺(Beta阶段)--第三天
  12. ajax请求处理和views处理函数的优先级
  13. GrideSearchCV 优化算法参数
  14. 2.java面向对象类与类/类与对象之间关系详解
  15. 大数据及Hadoop的概述
  16. grpc ssl使用
  17. AngularJS基础02 神奇的数据绑定(Binding)
  18. git博客好的例子
  19. uva-565-枚举
  20. appcompat_v7报错

热门文章

  1. grunt个人理解
  2. winform 子窗体数据改变刷新父窗体 分类: WinForm 2014-05-06 18:30 246人阅读 评论(0) 收藏
  3. javascript之文档碎片,文档碎片在理论上可以提高DOM操作的执行效率
  4. Google Web Toolkit (GWT)怎么制作多个用户界面
  5. boost------asio库的使用1(Boost程序库完全开发指南)读书笔记
  6. DELPHI 重命名文件名时 文件存在自动重命名
  7. Android自己定义控件而且使其能够在xml中自己定义属性
  8. cs模式与bs模式
  9. SQLite的 SQL语法总结
  10. IDLHDF5读取与转换