Объяснение:
a = input()
q = a.split(' ') #ВНУТРИ СПЛИТА ПРОБЕЛ
counter = 0
for el in q:
if el[0] == 'В':
counter += 1
print(counter)
Python:
1:
print(len(list(filter(lambda w: w[0] == 'B', input().split(' '
2:
string = input()
words = string.split(' ')
words = list(filter(lambda w: w[0] == 'B', words))
print(len(words))
Объяснение:
a = input()
q = a.split(' ') #ВНУТРИ СПЛИТА ПРОБЕЛ
counter = 0
for el in q:
if el[0] == 'В':
counter += 1
print(counter)
Python:
1:
print(len(list(filter(lambda w: w[0] == 'B', input().split(' '
2:
string = input()
words = string.split(' ')
words = list(filter(lambda w: w[0] == 'B', words))
print(len(words))