You can use the readline() method to read a single line of a file and store it in a variable. Here's an example:
line = scores_file.readline()
This will read the next line of the scores_file and store it in the variable line. If there are no more lines in the file, line will be an empty string.