Define a new type Person using namedtuple like this:
Person = namedtuple('Person', ['age', 'height', 'name'])
The second argument is the list of attributes that the tuple will have. You can list these attributes also as either space or comma separated string:
Person = namedtuple('Person', 'age,...