标签:func pytho python dai ble number function UNC span
Complete the function which takes two arguments and returns all numbers which are divisible by the given divisor. First argument is an array of numbers
and the second is the divisor
.
Example
divisible_by([1, 2, 3, 4, 5, 6], 2) == [2, 4, 6]
def divisible_by(numbers, divisor): return [x for x in numbers if x%divisor == 0]
【Kata Daily 191012】Find numbers which are divisible by given number
标签:func pytho python dai ble number function UNC span
原文地址:https://www.cnblogs.com/bcaixl/p/11658775.html