jgordon7586 jgordon7586 08-04-2024 Computers and Technology contestada What is the ending value of count?my_list = [3, -4, 0, -1, 2, 1, 8]n = 0count = 0while n < len( my_list):if my_list[n] > 0count = count + 1n = n + 1a. 3b. 4c. 1d. 5