Exercice 9
Ecrire un algorithme en python sous forme de fonction qui prends en paramètre un couple (L, a) formé d'une liste L et d'un élément a et qui renvoie True si l'élément a est présent dans la liste L et False si non.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 |
#coding: utf-8 def examinList(L, a): if a in L: return True else: return False # Exemple L = [13, 9 , 5 , 23] a = 5 print(examinList(L,a)) # la sortie est : True |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 9: algorithme python qui test si un élément est présent dans une liste ou non”