From 77101433b786a7ca3036fd7a17bc9c808808307c Mon Sep 17 00:00:00 2001 From: root Date: Thu, 3 Oct 2024 11:28:19 +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 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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