Exercise 11
Write an algorithm in python as a function which takes as parameters a tuple (L, n) formed by a list L of numbers and an integer n and which returns the list obtained from L by multiplying its elements by n .
Example if L = [13, 11, 7, 25] and n = 2 the function returns the list: [26, 22, 14, 50]
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 |
def listMultiply(L,n): # initialization of the desired list l_mult = [] # iterate through and multiply list elements by n for x in L: l_mult.append(n*x) return l_mult # Example n = 2 L = [13, 11, 7, 25] print(listMultiply(L,n)) # The output is: [26, 22, 14, 50] |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercise 11: multiply the elements of a Python list”