2021-09-30 16:36:58 +02:00

15 lines
234 B
Python
Executable File

#!/usr/bin/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 cle in cptmot.keys():
print(cle, cptmot[cle])