✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
The following program is supposed to count how many even numbers are entered by the user. What line of code must be inserted in the blank so that the program will achieve this goal?
evens = 0inputStr = input("Enter a value: ")____________________ value = int(inputStr) if value % 2 == 0: evens = evens + 1 inputStr = input("Enter a value: ")