Ответ:
n = str(input('Введите текст: '))
if 'the' in n:
print("совпадений найдено:",n.count('the'))
if "of" in n:
print("совпадений найдено:",n.count('of'))
if "in" in n:
print("совпадений найдено:",n.count('in'))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
n = str(input('Введите текст: '))
if 'the' in n:
print("совпадений найдено:",n.count('the'))
if "of" in n:
print("совпадений найдено:",n.count('of'))
if "in" in n:
print("совпадений найдено:",n.count('in'))