From c36eb6b92ae31caac6a72d6c07ad9eec8b71ca14 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 3 Oct 2024 11:37:03 +0200 Subject: [PATCH] =?UTF-8?q?=09modifi=C3=A9=C2=A0:=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20comptage=5Fmot.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sio2/SISR/07-python/comptage_mot.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sio2/SISR/07-python/comptage_mot.py b/sio2/SISR/07-python/comptage_mot.py index 2c29065..647dc04 100644 --- a/sio2/SISR/07-python/comptage_mot.py +++ b/sio2/SISR/07-python/comptage_mot.py @@ -6,8 +6,9 @@ tab_mot = phrase.split(' ') cpt_mot={} for mot in tab_mot: if mot in cpt_mot: - cpt_mot{mot}++ + cpt_mot[mot]+= 1 else : - cpt_mot{mot}=1 + cpt_mot[mot]=1 -for mot in +for mot in cpt_mot.keys: + print(mot, " : ",cpt_mot[mot])