Есть ответ 👍

в Python. Есть файл с каким то текстом и нужно найди самое часто встречающееся слово.

196
495
Посмотреть ответы 2

Ответы на вопрос:


Python 3.7.2

def readFile(file):

   with open(file, 'r',  encoding = 'utf-8') as file:

       text = file.readlines()

   return text  

file = input('Enter path to file: ')

text = ' '.join(readFile(file))

most_word = ['', 0]

for word in text.split(' '):

   if most_word[1] < text.count(word):  

       most_word[0] = word; most_word[1] = text.count(word)

print(most_word)


//прога на pascal`e var x: real; function f (a: real): real; begin f: = (sqr(cos(a)) - 5) / (abs(a) + 3); end; begin write ('введите x: '); readln (x); write ('a =  ',  f(x)); end.

Популярно: Информатика