modifié : comptage_mot.py

This commit is contained in:
root 2024-10-03 11:37:03 +02:00
parent 77101433b7
commit c36eb6b92a

View File

@ -6,8 +6,9 @@ tab_mot = phrase.split(' ')
cpt_mot={} cpt_mot={}
for mot in tab_mot: for mot in tab_mot:
if mot in cpt_mot: if mot in cpt_mot:
cpt_mot{mot}++ cpt_mot[mot]+= 1
else : else :
cpt_mot{mot}=1 cpt_mot[mot]=1
for mot in for mot in cpt_mot.keys:
print(mot, " : ",cpt_mot[mot])