Python的英文介绍。(实用)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Python
Definition:Python is an object-oriented,open-source programming language often used for rapid application development.Python's simple syntax amphasizes readability,reducing the cost of program mantenance, while its large library of functions and calls encourages reuse and extensibility.
Among the languages favored by Web developers and innovators,particularly those in the open-source community,three of the most popular are Perl,PHP and Pyhon.Though Perl and PHP are more mentioned,but we cannot neglect Python,which is emerging as a powerful alternative to the more traditional choices.
Python is attractive because of its ease of use;its high level of abstraction from the hardware;its extensive support for housekeeping activities such as I/O,memory management,data typing and variable binding;and,perhaps most important,the fact that programmers can be highly productive with the language. Python was created in the late 1980s by Dutch programmer Guido van Rossum and was named after the BBC television comedy series Monty Python 's Flying Circus.
You can consider Python either a scripting language or a
"regular"programming language. It offers an interactive mode for quick development and testing,as well as noninteractive mode for ease of reuse.
In fact ,Python dose not actually contain anything new -------every feature has been taken from some other language.These practical capabilities are wrapped up in a simple package that's available for anyone to download and use without restriction;not even the GNU Public License applies.
Like java,Python has a small core and a large, extensible library of functions and procedures.Thus,most of what a programmer is likely to need already exists in written,tested from and can be used with simple library calls glued together with a small amount of new code.
One measure of Python's programmer-friendliness is its reliance on a simple indentation hierarchy for grouping sections of code,which eliminates the need to match Begin/End statements or to count parentheses,brackets or curly braces.
Even so.Python is a general-purpose programming language that offers far more structure and support for large programs than simple shell scripts and much more errors checking than lower-level languages such as C.
Python is object-oriented with built-in,high-level data
types,including flexible arrays and dictionaries.It can be applied to much larger problems than languages such as Awk or even Perl can, yet it remains as easy to use as those languages.。