A programmer has written a Python program to calculate and display the average of two integer quiz scores entered by a user.
There are three errors in the code below.
Line 1: score1 = input("Enter score 1: ")
Line 2: score2 = input("Enter score 2: ")
Line 3: average = score1 + score2 / 2
Line 4: print("The average is " + average)
Identify the line number for each error and write the corrected line of code.