Python in a Nutshell, Second Edition 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024


Python in a Nutshell, Second Edition

简体网页||繁体网页
Alex Martelli 作者
O'Reilly Media
译者
2006-7-24 出版日期
738 页数
USD 39.99 价格
Paperback
丛书系列
9780596100469 图书编码

Python in a Nutshell, Second Edition 在线电子书 图书标签: python  O'Reilly  programming  编程  nutshell  计算机  程序设计  Python   


喜欢 Python in a Nutshell, Second Edition 在线电子书 的读者还喜欢




点击这里下载
    

想要找书就要到 图书目录大全
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

发表于2024-12-23


Python in a Nutshell, Second Edition 在线电子书 epub 下载 mobi 下载 pdf 下载 txt 下载 2024

Python in a Nutshell, Second Edition 在线电子书 epub 下载 mobi 下载 pdf 下载 txt 下载 2024

Python in a Nutshell, Second Edition 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024



Python in a Nutshell, Second Edition 在线电子书 用户评价

评分

大部分开始学python的人应该都不是第一次接触编程吧,这样的话看这样的书反而会比较有效率。

评分

用来做离线的 reference 还不错。

评分

范围上相当于Learning、Programming两本的基础部分,结构上很像官方文档。第二版基于Python2.4,略显陈旧。整体上是个不错的线下手册。

评分

肯能是 O'Reilly 早期出版的书吧,字体、排版不易读

评分

肯能是 O'Reilly 早期出版的书吧,字体、排版不易读

Python in a Nutshell, Second Edition 在线电子书 著者简介

Alex Martelli (born October 5, 1955) is an Italian computer engineer and member of the Python Software Foundation. Since early 2005, he works as "Über Tech Lead" for Google, Inc. in Mountain View, California. He holds a Laurea in Electrical Engineering from Bologna University (1980); he is the author of Python in a Nutshell, co-editor of the Python Cookbook, and has written other (mostly Python-related) materials. Martelli won the 2002 Activators' Choice Award, and the 2006 Frank Willison award for outstanding contributions to the Python community.


Python in a Nutshell, Second Edition 在线电子书 图书目录


Python in a Nutshell, Second Edition 在线电子书 pdf 下载 txt下载 epub 下载 mobi 在线电子书下载

Python in a Nutshell, Second Edition 在线电子书 图书描述

This book offers Python programmers one place to look when they need help remembering or deciphering the syntax of this open source language and its many powerful but scantily documented modules. This comprehensive reference guide makes it easy to look up the most frequently needed information--not just about the Python language itself, but also the most frequently used parts of the standard library and the most important third-party extensions. Ask any Python aficionado and you'll hear that Python programmers have it all: an elegant object-oriented language with readable and maintainable syntax, that allows for easy integration with components in C, C++, Java, or C#, and an enormous collection of precoded standard library and third-party extension modules. Moreover, Python is easy to learn, yet powerful enough to take on the most ambitious programming challenges. But what Python programmers used to lack is a concise and clear reference resource, with the appropriate measure of guidance in how best to use Python's great power. Python in a Nutshell fills this need. Python in a Nutshell, Second Edition covers more than the language itself; it also deals with the most frequently used parts of the standard library, and the most popular and important third party extensions. Revised and expanded for Python 2.5, this book now contains the gory details of Python's new subprocess module and breaking news about Microsoft's new IronPython project. Our "Nutshell" format fits Python perfectly by presenting the highlights of the most important modules and functions in its standard library, which cover over 90% of your practical programming needs. This book includes: * A fast-paced tutorial on the syntax of the Python language * An explanation of object-oriented programming in Python * Coverage of iterators, generators, exceptions, modules, packages, strings, and regular expressions * A quick reference for Python's built-in types and functions and key modules * Reference material on important third-party extensions, such as Numeric and Tkinter * Information about extending and embedding Python Python in a Nutshell provides a solid, no-nonsense quick reference to information that programmers rely on the most. This book will immediately earn its place in any Python programmer's library. Praise for the First Edition: "In a nutshell, Python in a Nutshell serves one primary goal: to act as an immediately accessible goal for the Python language. True, you can get most of the same core information that is presented within the covers of this volume online, but this will invariably be broken into multiple files, and in all likelihood lacking the examples or the exact syntax description necessary to truly understand a command." --Richard Cobbett, Linux Format "O'Reilly has several good books, of which Python in a Nutshell by Alex Martelli is probably the best for giving you some idea of what Python is about and how to do useful things with it." --Jerry Pournelle, Byte Magazine

Python in a Nutshell, Second Edition 在线电子书 下载 mobi epub pdf txt 在线电子书下载

想要找书就要到 图书目录大全
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

Python in a Nutshell, Second Edition 在线电子书 读后感

评分

好好的书又被糟蹋了。 什么叫“解除绑定方法”? unbound 就非要翻译成动词短语么?! Python CookBook 翻译成 Python 食谱。 好,这个可以原谅。 后面说明怎么是xxx网站主要用来动态收集与Python程序有关的食谱?!?!?!?!  

评分

正在kindle上它的电子版,每天翻上几页,以加深印象。 没有把它当手册查阅,因为不是一本很翔实的手册,正如其他读者说的那样,python内置的文档已经相当详细了,也有比这本书更详细的书籍出版。 这本书的好处是全面,特别是对内置的内容可谓面面俱到,但都没有太深入,适合对p...  

评分

这本书是面向已经对PYTHON有所了解的读者的,里面对PYTHON本身的介绍并不是非常的仔细,对于第一次学习PYTHON的读者可能会比较难懂。 另一方面,这本书是一本非常出色的参考书,里面覆盖了大部分PYTHON编程中会用到的技巧和知识。如果是经常使用PYTHON的话,买一本放在手边是...  

评分

我只看了此书的Chapter 6 Exception,有帮助,很好的回答了最近困扰我的两个问题: (1)Why should we use exception in Python ? (2)When should I use exception in Python ? 与我的问题类似的的另一个问题:http://programmers.stackexchange.com/questions/219320/when-...  

评分

正在kindle上它的电子版,每天翻上几页,以加深印象。 没有把它当手册查阅,因为不是一本很翔实的手册,正如其他读者说的那样,python内置的文档已经相当详细了,也有比这本书更详细的书籍出版。 这本书的好处是全面,特别是对内置的内容可谓面面俱到,但都没有太深入,适合对p...  

类似图书 点击查看全场最低价

Python in a Nutshell, Second Edition 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024


分享链接





Python in a Nutshell, Second Edition 在线电子书 相关图书




本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

友情链接

© 2024 book.wenda123.org All Rights Reserved. 图书目录大全 版权所有