""" Defines a struct representing a single card. The struct takes the form: (front, back) """ from collections import namedtuple Card = namedtuple('Card', ['front', 'back'])