The Python program shown below contains an error.
1 readings = [14.2, 15.8, 16.0, 18.0]
2 total = 0
3 for value in readings:
4 total = total + value
5 average = total / 3
6 print("Average:", average)
Select the two statements that are correct about logic errors and code translators.