Read the lines from 'clients.txt', then convert each line into a tuple of ('first', 'last', age, 'phone number') fields. In particular, make sure that the age field is converted to an integer type, not a string!
For example, the line
'Stella Do 39 217-325-1432'should become
('Stella', 'Do', 39, '217-325-1432')
Complete our database processing by writing the table sorted by age to 'people.age.txt'.