4. Working with CSV and JSON files

Quiz: 0/5

In this lesson, we'll learn how to work with two types of files that you might encounter when dealing with data: CSV (Comma Separated Values) and JSON (JavaScript Object Notation). These file formats are used to store and share data, and knowing how to handle them is really useful in programming.

Reading and writing CSV files

A CSV file is a simple text file where each line contains values separated by commas. It's often used to store data like lists, spreadsheets, or tables.

Reading CSV files:

You can read data from a CSV file using the csv.reader() function. This function reads each row and splits the values based on commas.

Example:

import csv

with open('data.csv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)

Writing CSV Files:

You can write data to a CSV file using csv.writer(). It helps you add rows to the file, with each value separated by a comma.

Example:

import csv

data = [["Name", "Age"], ["Alice", 30], ["Bob", 25]]

with open('output.csv', 'w', newline='') as file:
    writer = csv.writer(file)
    writer.writerows(data)

Using DictReader and DictWriter

Instead of dealing with rows as simple lists, sometimes it's easier to work with them as dictionaries (where each value has a corresponding key).

DictReader:

This is useful when you want to read CSV data where each row is represented as a dictionary with column names as keys.

Example:

import csv

with open('data.csv', 'r') as file:
    reader = csv.DictReader(file)
    for row in reader:
        print(row)

DictWriter:

This allows you to write dictionaries to a CSV file, where the dictionary keys correspond to the column headers.

Example:

import csv

data = [{"Name": "Alice", "Age": 30}, {"Name": "Bob", "Age": 25}]

with open('output.csv', 'w', newline='') as file:
    fieldnames = ["Name", "Age"]
    writer = csv.DictWriter(file, fieldnames=fieldnames)
    writer.writeheader()
    writer.writerows(data)

Reading and writing JSON files

A JSON file is a text file that stores data in a structured, human-readable format. It's often used to exchange data between web servers and clients.

Reading JSON files:

Use json.load() to read data from a JSON file and turn it into a Python dictionary.

Example:

import json

with open('data.json', 'r') as file:
    data = json.load(file)
    print(data)

Writing JSON files:

Use json.dump() to write Python data (like dictionaries or lists) into a JSON file.

Example:

import json

data = {"name": "Alice", "age": 30}

with open('output.json', 'w') as file:
    json.dump(data, file)

Hands-On Practise

Exercise: Working with CSV and JSON files

You are managing a small school, and you need to store information about students. You'll first create a CSV file to save the student data, then read it and save it as a JSON file.

Part 1: Create a CSV file with student data

  1. Create a list of student data. Each student should have a name, age, and grade.

    Example data:
    • Alice, 15, A
    • Bob, 16, B
    • Charlie, 14, A
  2. Write this data to a CSV file called students.csv. The first row should be the column headers: "Name", "Age", "Grade".

Part 2: Read the CSV file and print the data

  1. Read the students.csv file using csv.reader() and print each row of data.

Part 3: Convert the CSV data to a JSON file

  1. Convert the CSV data to a JSON format, where each student is represented as a dictionary with keys: "Name", "Age", and "Grade".

    Example:
[
  {"Name": "Alice", "Age": 15, "Grade": "A"},
  {"Name": "Bob", "Age": 16, "Grade": "B"},
  {"Name": "Charlie", "Age": 14, "Grade": "A"}
]
  1. Write this data to a JSON file called students.json.

Bonus Challenge:

Use DictReader to read the CSV file as a dictionary and print each student's information in a more readable format (e.g., "Name: Alice, Age: 15, Grade: A").

Output:

Quizzes: 0/5

Question 1:

What function is used to read a CSV file in Python?

  • csv.load()
  • csv.reader()
  • csv.read()
  • csv.loadfile()

Question 2:

Which Python module is used to work with JSON files?

  • json
  • csv
  • pickle
  • os

Question 3:

What does the csv.DictReader() function do?

  • Reads CSV data as a list
  • Reads CSV data as dictionaries
  • Writes CSV data as a list
  • Converts CSV data into JSON format

Question 4:

Which Python function is used to write data to a JSON file?

  • json.write()
  • json.dump()
  • json.save()
  • json.writefile()

Question 5:

What will happen if you try to open a file in 'r' mode that doesn't exist?

  • It will create a new empty file.
  • It will raise a FileNotFoundError.
  • It will overwrite the existing file.
  • It will open the file as a binary file.

Feedback

Share your thoughts about this lesson

Discussion

Please log in to create a discussion.
Previous lessonWriting to a FileNext lessonBinary file handling