Ответ:
strings = []
count = 0
string = input()
while 'Гэндальф' not in string:
strings.append(string)
for i in strings:
if 'волшебн' in i:
count += len(i)
print(count)
Объяснение:
Подходит?
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
strings = []
count = 0
string = input()
while 'Гэндальф' not in string:
strings.append(string)
string = input()
for i in strings:
if 'волшебн' in i:
count += len(i)
print(count)
Объяснение:
Подходит?