diff --git a/sio2/SISR/07-python/comptage_mot.py b/sio2/SISR/07-python/comptage_mot.py index 282835b..2c29065 100644 --- a/sio2/SISR/07-python/comptage_mot.py +++ b/sio2/SISR/07-python/comptage_mot.py @@ -3,5 +3,11 @@ phrase = input("Saisissez une phrase :" ) tab_mot = phrase.split(' ') +cpt_mot={} for mot in tab_mot: - print(mot) + if mot in cpt_mot: + cpt_mot{mot}++ + else : + cpt_mot{mot}=1 + +for mot in