Дана строка, состоящая из русских слов, набранных заглавными буквами и разделенных пробелами (одним или несколькими). Найти количество слов, которые содержат хотя бы одну букву «А».
def count_words_with_A(string): words = string.split() count = 0 for word in words: if 'А' in word: count += 1 return count string = "СЛОВО С АМЕРИКАНСКИМ ФЛАГОМ" result = count_words_with_A(string) print(result)
Пример кода на Python:
def count_words_with_A(string):words = string.split()
count = 0
for word in words:
if 'А' in word:
count += 1
return count
string = "СЛОВО С АМЕРИКАНСКИМ ФЛАГОМ"
result = count_words_with_A(string)
print(result)
Результат:
2