Automate the Boring Stuff with Python, 2nd Edition 在线电子书 图书标签: Python python CS 重要 软件工程 计算机 美国 编程
发表于2024-11-24
Automate the Boring Stuff with Python, 2nd Edition 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024
基础,实用,全面
评分基础,实用,全面
评分前半本书是Python基础,后半本书介绍了几个Python库:openpyxl for excel, PyPDF2 for pdf editing, smtplib & imapclient for email, pyautogui for GUI automation.
评分前半本书是Python基础,后半本书介绍了几个Python库:openpyxl for excel, PyPDF2 for pdf editing, smtplib & imapclient for email, pyautogui for GUI automation.
评分基础,实用,全面
Al Sweigart is a professional software developer who teaches programming to kids and adults. Sweigart has written several bestselling programming books for beginners, including Automate the Boring Stuff with Python, Invent Your Own Computer Games with Python, Cracking Codes with Python, and Coding with Minecraft (all from No Starch Press).
If you've ever spent hours renaming files or updating hundreds of spreadsheet cells, you know how tedious tasks like these can be. What if you could have your computer do that for you? In this second edition of Automate the Boring Stuff with Python, you'll learn the basics of programming in Python, the fastest growing programming language today, before moving on to create Python programs that effortlessly perform useful and impressive feats of automation to:
Search for text in a file or across multiple files
Create, update, move, and rename files and folders
Search the Web and download online content
Update and format data in Excel spreadsheets of any size
Split, merge, watermark, and encrypt PDFs
Send reminder emails and text notifications
Fill out online forms
This updated edition is full of step-by-step instructions that walk through each program. Practice projects at the end of each chapter challenge you to improve those programs and use your newfound skills to automate similar tasks.
Don't spend your time doing work a well-trained monkey could do. Even if you've never written a line of code, you can make your computer do the grunt work. Learn how in Automate the Boring Stuff with Python, 2nd Edition.
>>>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] (<...
评分这篇文章不谈江流所专研的营销与运营,而聊一聊技能学习之路,聊一聊Python这门最简单的编程语言该如何学习,我完成的第一个Python项目,将任意公众号的所有历史文章导出成PDF电子书。 或许我这个Python初学者的学习路径能给你带来启发,或许你产生了要学一门新技术的冲动。 文...
评分这本书让我这种编程小白看到了Python无所不能的潜力。参考本书的示例,学着编写了人生第一个解决问题的程序——我用来批量删除PDF文件的广告页。从单文件操作到递归目录,从指定页码删除到图像识别,从经常崩溃到异常处理,过程中发现和解决了不少问题,从此学习劲头更足了。正...
评分对于有着C或者Java基础的朋友来说,本书的内容也不会枯燥。因为有关基本语法的内容并没有过多阐述,跳过学习章节直接切入书中的小项目是更好的选择。 由于本身是通过小项目实践学习,所以对翻译要求也不会很高,勉强能看就够了。一句话,show me the code. 这本书适合想学点真...
评分首先我是新手哈,不过也了解最最基础的代码基础(限于字符串、控制流)。 不过我照这本书写代码,前面写的有点难受,比方在说控制流程elif的时候,name、ege都没有变量输入,那代码直接写就不能运行。我怎么觉得这缩进也有问题,不知道是不是翻译的原因。 if name == 'Alice': ...
Automate the Boring Stuff with Python, 2nd Edition 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024