# person_step01.py
#
# ICS 33 Spring 2026
# Code Example
#
# This is the simplest thing that could possibly work: a namedtuple called
# Person with attributes for a name and a birthdate.

from collections import namedtuple


Person = namedtuple('Person', ['name', 'birthdate'])
