请选择 进入手机版 | 继续访问电脑版
首页计算机书籍计算机语言《Python入门指南》Guido van Rossum
韩霜落雪

文档

155

关注

1

好评

0
PDF

《Python入门指南》Guido van Rossum

阅读 677 下载 0 大小 1.46M 总页数 137 页 2022-09-27 分享
价格:¥ 10.00
下载文档
/ 137
全屏查看
《Python入门指南》Guido van Rossum
还有 137 页未读 ,您可以 继续阅读 或 下载文档
1、本文档共计 137 页,下载后文档不带www.pdfdz.com水印,支持完整阅读内容。
2、古籍基本都为PDF扫描版,所以文档不支持编辑功能,即不支持文档内文字的复制粘贴。
3、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
4、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
5、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。
Python Tutorial Python入门指南Release 2.5b2Guido van RossumFred L.Drake,Jr.,editor11th July,2006Python Software FoundationEil:docs@python.orgCopyright 2001-2006 Python Software Foundation.All rights reserved.Copyright 2000 BeOpen.All rights reserved.Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved.Copyright1991-1995 Stichting Mathetisch Centrum.All rights reserved.See the end of this document for complete license and permissions infortion.AbstractPython is an easy to learn,powerful programming language.It has efficient high-level data structures and a simplebut effective approach to object-oriented programming.Python's elegant syntax and dynamic typing.together with itsinterpreted nature,ke it an ideal language for scripting and rapid application development in ny areas on mostplatforms.PyhO是一种容易学习的强大的编程语言,它包含了高效的高级数据结构,能够用简单而高效的方式进行面向对象编程,Pythor优雅的语法和动态类型,以及它天然的解释能力,使其成为了大多数平台上广泛适用于各倾域的理想脚本语言和开发环境.The Python interpreter and the extensive standard library are freely available in source or binary form for all jorplatforms from the Python Web site,://.python.org/and y be freely distributed.The same sitealso contains distributions of and pointers to ny free third party Python modules,programs and tools,and additionaldocumentation.Python解释器及其扩展标准库的源码和编译版本可以从Python的Web站点,ttp://w.python.org☑及其所有镜像站上免费获得,并且可以自由发布,该站点上也提供了Python的一些第三方模块,程序,工具,以及附加的文档。The Python interpreter is easily extended with new functions and data types implemented in C or C++(or otherlanguages callable from C).Python is also suitable as an extension language for customizable applications.Pythor解释器可以很容易的通过C或者C+(或者其它可以通过C调用的语言)扩展新函数和数据类型.Python也可以作为定制应用的扩展语言.This tutorial introduces the reader inforlly to the basic concepts and features of the Python language and system.Ithelps to have a Python interpreter handy for hands-on experience,but all examples are self-contained,so the tutorialcan be read off-line as well.本手册向读者介绍Python语言及其系统的基本知识与概念.配合Pythor解释器学习会很有帮助,不过所有的例子都已包括在文中,所以这本手局也很可以离线阅读。For a description of standard objects and modules,see the Python Library Reference document.The Python Refer-ence Manual gives a more forl definition of the language.To write extensions in C or C++,read Extending andEmbedding the Python Interpreter and Python/C API Reference.There are also several books covering Python indepth.需要有关标准对象和模块的详细介绍的话,请查询Pyon库参考手册文档.Python参考手册提供了更多的关于语言方面的正式说明.需要编写C或C+扩展,请阅读Python解释器的扩限和集成以及Pyho/CAPI参考手册,这几本书涵盖了各个深度上的Python知识.This tutorial does not attempt to be comprehensive and cover every single feature,or even every commonly usedfeature.Instead,it introduces ny of Python's most noteworthy features,and will give you a good idea of thelanguage's flavor and style.After reading it,you will be able to read and write Python modules and programs,and youwill be ready to leam more about the various Python library modules described in the Python Library Reference.本手册不会涵盖Python的所有功能,也不会去解释所用到的所有相关的知识,相反,它介绍了许多Python中最引人注目的功能,这会对读者掌提这门语言的风格大有帮助,读过它后,你应该可以阅读和编写Pytho模块和程序,接下来可以从Python库参考手册中进一步学习Pytho复杂多变的库和模块。
返回顶部