cptmot.py

This commit is contained in:
Mehdi Zyati 2021-10-06 09:10:20 +02:00
parent 3e0abbf450
commit 189080c510

View File

@ -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])