Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started