Exercice 4
Etant donné un ensemble A = { 'a' , 'b' , 'c' , 'd' }. Ecrire un algorithme en Python qui permet d'ajouter un élément 'x' à A sans utiliser la méthode add().
Solution
1 2 3 4 5 6 7 |
A = { 'a' , 'b' , 'c' , 'd' } # on ajoute 'x' à A via la méthode union() A2 = A.union({'x'}) # afficher l'ensemble A2 print(A2) # output: {'a', 'd', 'b', 'c', 'x'} |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 4: ajouter un élément à un ensemble en Python”