From 189080c51017e00c88dda1874b0bba595d532970 Mon Sep 17 00:00:00 2001 From: Mehdi Zyati Date: Wed, 6 Oct 2021 09:10:20 +0200 Subject: [PATCH] cptmot.py --- sio2/sisr/20-python/cptmot.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sio2/sisr/20-python/cptmot.py diff --git a/sio2/sisr/20-python/cptmot.py b/sio2/sisr/20-python/cptmot.py new file mode 100644 index 0000000..acb517f --- /dev/null +++ b/sio2/sisr/20-python/cptmot.py @@ -0,0 +1,15 @@ +#!/usr/lib/python3 + +phrase = input('Phrase : ') +tabmot = phrase.split(' ') +cptmot = {} + +for mot in tabmot : + if mot in cptmot : + cptmot[mot] = cptmot[mot] + 1 + else : + cptmot[mot] = 1 + +for key in cptmot.keys() : + print (key, " ", cptmot[key]) +