Automate the Boring Stuff with Python by Al Sweigart
Author:Al Sweigart [Al Sweigart]
Language: eng
Format: epub, mobi, pdf
Tags: COMPUTERS / Programming / General
ISBN: 9781593276850
Publisher: No Starch Press
Published: 2015-04-24T16:00:00+00:00
Creating and Removing Sheets
Sheets can be added to and removed from a workbook with the create_sheet() and remove_sheet() methods. Enter the following into the interactive shell:
>>> import openpyxl >>> wb = openpyxl.Workbook() >>> wb.get_sheet_names() ['Sheet'] >>> wb.create_sheet() <Worksheet "Sheet1"> >>> wb.get_sheet_names() ['Sheet', 'Sheet1'] >>> wb.create_sheet(index=0, title='First Sheet') <Worksheet "First Sheet"> >>> wb.get_sheet_names() ['First Sheet', 'Sheet', 'Sheet1'] >>> wb.create_sheet(index=2, title='Middle Sheet') <Worksheet "Middle Sheet"> >>> wb.get_sheet_names() ['First Sheet', 'Sheet', 'Middle Sheet', 'Sheet1']
The create_sheet() method returns a new Worksheet object named SheetX, which by default is set to be the last sheet in the workbook. Optionally, the index and name of the new sheet can be specified with the index and title keyword arguments.
Continue the previous example by entering the following:
>>> wb.get_sheet_names() ['First Sheet', 'Sheet', 'Middle Sheet', 'Sheet1'] >>> wb.remove_sheet(wb.get_sheet_by_name('Middle Sheet')) >>> wb.remove_sheet(wb.get_sheet_by_name('Sheet1')) >>> wb.get_sheet_names() ['First Sheet', 'Sheet']
The remove_sheet() method takes a Worksheet object, not a string of the sheet name, as its argument. If you know only the name of a sheet you want to remove, call get_sheet_by_name() and pass its return value into remove_sheet().
Remember to call the save() method to save the changes after adding sheets to or removing sheets from the workbook.
Download
Automate the Boring Stuff with Python by Al Sweigart.mobi
Automate the Boring Stuff with Python by Al Sweigart.pdf
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Deep Learning with Python by François Chollet(12504)
Hello! Python by Anthony Briggs(9855)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(9742)
The Mikado Method by Ola Ellnestam Daniel Brolund(9735)
Dependency Injection in .NET by Mark Seemann(9280)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8246)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(7728)
Grails in Action by Glen Smith Peter Ledbrook(7655)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(7503)
Becoming a Dynamics 365 Finance and Supply Chain Solution Architect by Brent Dawson(6706)
Microservices with Go by Alexander Shuiskov(6469)
Practical Design Patterns for Java Developers by Miroslav Wengner(6376)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(6367)
Test Automation Engineering Handbook by Manikandan Sambamurthy(6351)
Angular Projects - Third Edition by Aristeidis Bampakos(5723)
The Art of Crafting User Stories by The Art of Crafting User Stories(5264)
NetSuite for Consultants - Second Edition by Peter Ries(5211)
Demystifying Cryptography with OpenSSL 3.0 by Alexei Khlebnikov(5024)
Kotlin in Action by Dmitry Jemerov(5007)
