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
Acheter sur Très Facile !
-
Promo !
Routeur WiFi AX 3000 Mbps TP-Link Routeur, WiFi 6, 4 antennes à haute performance, OneMesh, WPA3
€ 56,00 Acheter le produit -
Apprenez à créer vos propres outils de Hacking en python
€ 18,00 Acheter le livre -
Apprendre les statistique avec python: Estimation des incertitudes
€ 21,00 Acheter le livre
1 thought on “Solution Exercise 11: multiply the elements of a Python list”