Solution Exercice 80: recherche de la liste des mots communs à deux texte en python
Exercice 80 Ecrire un algorithme python qui détermine la liste de tous les mots communs à deux textes T1 et T2 sans répétition. Exemple si: T1 = "Python is open source programming language. Python was created on 1991" et T2 = "Python is the most popular programming language ", l'algorithme renvoie la liste:
|
1 |
['Python', 'is', 'programming', 'language.'] |
(le…