Answered step by step
Verified Expert Solution
Question
1 Approved Answer
python languge. plese send the answer as a text not picture. Write a function getMultiples() that takes a list of integer numbers and an integer
python languge. plese send the answer as a text not picture.
Write a function getMultiples() that takes a list of integer numbers and an integer number as parameters, returns a new list made of the numbers in the list that are multiples of the number in the second parameter. Example: If the parameters are [44, 80, 72, 245, 7, 24] and 5, then the function will return [80, 245] which are multiples of 5 (or divisible by 5). The function must work for all integer lists and all 2nd integer parameters.
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