Develop a Python program to do the following: Input any number of positive and negative integers from the user, then display the number of integers that were positive and the number of integers that were negative.
Requirements:
- You must write two functions, is_positive and is_negative, that return True or False if the integer handed to them is positive or negative, respectively.
- You must call your functions in your overall loop in your main code.
Example output:
Please enter a positive or negative integer, or 0 to quit: 3
Please enter a positive or negative integer, or 0 to quit: 5
Please enter a positive or negative integer, or 0 to quit: -3
Please enter a positive or negative integer, or 0 to quit: 9
Please enter a positive or negative integer, or 0 to quit: 0
You entered 3 positive integers and 1 negative integer(s). Add comments to your program starting with your name at the top, then throughout your program to describe what you are doing. Be sure and make your calculations clear, giving your variables meaningful names. Also, be sure to indent consistently throughout your program to make it more readable. Be sure you run this and test it a few times before submitting it.