Suppose that we need to write a Python function countTemps, that takes a list as an argument and calculates and returns the number of the positive numbers, the negative numbers, and the zeros.
Write a complete Python program that includes the above function and the below list, and prints the counts of the positive, negative, and zero values.
You should include also, a screenshot of the code and the output.
You can use the following list : temperature= [0, 1, 5, -3, 4, 15, 6, -2, 8, -5, 10, 0, -4, 0, 7]
