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

15 lines
228 B
Python
Raw Normal View History

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