def make_training_set(file_name): # open file # initialize training_set list # for each line in the file # parse the line into its 11 parts # create a tuple for the patient # append to the end of the training_set list # return the training_set list