hnc-vitalii/NHC/Excercises/дз 27,06,2023,3.py

16 lines
283 B
Python
Raw Normal View History

2023-07-07 19:41:49 +02:00
def word_count(text):
text = [("Я пришел, я ушел, я нашел")]
text = text.lower()
for i in text:
if i in text:
text[i] = text[i] + 1
else:
text[i] = -1
return text
p = word_count
for p in text:
print(p)