Question: In this problem you should write a python function named multiples. This function should have one parameter, which you may assume will be a list

In this problem you should write a python function named "multiples". This function should have one parameter, which you may assume will be a list of integer numbers. The function should loop through the list and count how many numbers exist in the list that both multiples of two and multiples of three. You must use a for loop. For example, say that this list was passed into the function: [20, 30, 3, 7, 1, 31, 4]. The function should determine that 20, 30,3, and 4 are multiples of 2 or 3. Thus, the function should return 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
