How to write data to an Excel file using Python

A guide on how to use Python to write data into an Excel file using the openpyxl library, making it easy to manage and handle Excel data in your projects.

In this article, we will explore how to use the openpyxl library in Python to write data into an Excel file. This is particularly useful when you need to handle and export data in a spreadsheet format, making data analysis more straightforward and flexible.

from openpyxl import Workbook

# Initialize a new Workbook
workbook = Workbook()

# Access the active worksheet
sheet = workbook.active

# Write data into the cells
sheet["A1"] = "Name"
sheet["B1"] = "Age"
sheet["A2"] = "John Doe"
sheet["B2"] = 28
sheet["A3"] = "Jane Smith"
sheet["B3"] = 24

# Save the Excel file with the name 'data.xlsx'
workbook.save("data.xlsx")

Detailed Explanation

  1. from openpyxl import Workbook: Import Workbook from the openpyxl library to handle Excel files.
  2. workbook = Workbook(): Create a new workbook.
  3. sheet = workbook.active: Access the active sheet within the workbook.
  4. sheet["A1"] = "Name" and sheet["B1"] = "Age": Write data into cells A1 and B1.
  5. workbook.save("data.xlsx"): Save the workbook into a file named data.xlsx.

System Requirements

  • Python: Version 3.6 or higher
  • Library: openpyxl

How to install the required library

Install openpyxl using the following command:

pip install openpyxl

Tips

  • Make sure you have installed the openpyxl library before running the code.
  • Choose a clear and memorable file name to avoid confusion when saving.


Related

Guide to Reading Excel Files Using Python

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Python, utilizing the openpyxl and pandas libraries with illustrative examples.
Generate Captcha Code Using Python

A comprehensive guide on how to generate Captcha code using Python with the `captcha` library. This guide will help you understand how to create a simple Captcha to protect your forms from spam and bots.
Common Functions When Using Selenium Chrome in Python

A guide that introduces the most common functions used when working with Selenium and Chrome in Python, enabling tasks like searching, interacting with web elements, and browser navigation.
How to DELETE data from a MySQL database using Python

A guide on how to use Prepared Statements in Python to delete data from a table in a MySQL database safely and effectively.
Creating video from images using MoviePy

A detailed guide on how to create a video from images using Python and the MoviePy library. The article includes source code and line-by-line explanations.
Comprehensive Guide to Using the print() Function in Python

A detailed guide on all the ways to use the print() function in Python, covering formatting options, parameters, and advanced usage.
How to remove MultiIndex columns in Pandas

This article explains how to remove MultiIndex columns from a Pandas DataFrame, a useful feature when working with complex data with multiple index levels. You will learn how to flatten or completely remove MultiIndex columns.
Guide to Creating a Login Form in Python Using PyQT6

A detailed guide on how to create a login form in Python using PyQT6, including designing the interface and handling the login button event.
JSON Web Token (JWT) Authentication in Python

A guide on how to implement JSON Web Token (JWT) authentication in Python. This article covers how to generate and verify JWTs in a web application to secure APIs.
Guide to Creating a Registration Form in Python Using PyQT6

A detailed guide on how to create a registration form in Python using PyQT6, including how to add input fields and handle the registration button event.

main.add_cart_success