Automate the Boring Stuff with Python 在线电子书 图书标签: Python 编程 Programming 计算机 python 自动化 IT 思维方式
发表于2025-02-22
Automate the Boring Stuff with Python 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2025
第一本编程书,现在也偶尔用python写脚本,不过发现这些代码都太entry level了
评分嗯,就从办公自动化开始入门吧。看了第二遍才知道这本书的好。
评分原来是给非开发者看的,太简单了
评分适合无编程基础的初学者,快速上手。 英文版:https://automatetheboringstuff.com/#toc
评分后半部的自动化应用场景不大心仪,草草而过。
Al Sweigart 是一名软件开发者,还教小孩和成人编程。他为初学者写了几本Python 书籍,包括《Python 密码学编程》、《Python 游戏编程快速上手》和《Python 和Pygame 游戏开发指南》。
>>>import openpyxl >>>wb = openpyxl.load_workbook('example.xlsx') >>>sheet = wb.get_active_sheet() >>>sheet.columns[1] 上面的示例为运行后,会产生如下报错: TypeError: 'generator' object is not subscriptable 用以下的方式访问即可 >>> list(sheet.columns)[0] (<...
评分16.6.2的示例代码,因为 twilio库的版本变化,会报如下的错误: twilio.base.obsolete.ObsoleteException: TwilioRestClient has been removed from this version of the library. Please refer to current documentation for guidance. 根据该公司的API说明,应该使用以下代...
评分>>>import openpyxl >>>wb = openpyxl.load_workbook('example.xlsx') >>>sheet = wb.get_active_sheet() >>>sheet.columns[1] 上面的示例为运行后,会产生如下报错: TypeError: 'generator' object is not subscriptable 用以下的方式访问即可 >>> list(sheet.columns)[0] (<...
评分复制我在京东的评价。顺便也是我的豆瓣首评。以下: 先声明,此评价与平台无关,只针对内容质量。这本书,怎么说呢,英文版没有看过,但是就我看的中文版来说…质量不是太高,大家可以慎重考虑一下。入门感觉还可以,但是从排版到翻译,简直是错漏百出。引用的代码有很多错误,...
评分上面这个评论标题来自本书作者自己发布的博客文章,链接是: https://inventwithpython.com/blog/2019/10/07/whats-new-in-the-2nd-edition-of-automate-the-boring-stuff-with-python/ 简单来说,第二版更新了以下内容: The second edition is about 100 pages longer than t...
Automate the Boring Stuff with Python 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2025