Pachydurm 0 Newbie Poster

program that will read an unknown number of bowlers and their bowling scores (with possible values from 1 to 300) from an external file called "bowlingscores.txt". The file will look similar to the following:
David
102
Hector
300
Mary
195
Jane
160
Sam
210

Output the bowlers’ names to an external data file called "bowlingaverages.txt". Next to each bowler's name, print a message dependent on their scores:
For perfect scores (equal to 300), output “perfect”
For those scores greater than the average score, output “above average”
For those below average, output “below average”
Your program must include at least one function (e.g., to calculate the average, to determine the appropriate message to print, etc.

So far I have a text file set up as follows:

David 102
Hector 300
and so on......

Code so far is:

bowling_scores = open("bowlingscores.txt", "r")
bowling_averages = open("bowlingaverages.txt", "w")

lines = bowling_scores.readlines()

This is my first programming class so any help would be greatly appreciated!