0
Помогите решить задачу по курсу Python подсчет средней длины слов. Никак не проходит тест у меня.
6 odpowiedzi
+ 3
text = input()
p = len((text.split()))
def o (a):
b = 0
for i in a.split():
b+= len(i)
return b
print(o(text)/p)
+ 2
text = input()
f=text.split()
u=len(f)
a = sum(len(i) for i in f)
print(a/u)
+ 1
Покажите попытку.
0
text = input()
f=(text.split())
u=len(f)
for i in f:
avg=sum(len(i))/u
i+=1
print(avg)
0
Спасибо большое!😊
0
text = input()
split = text.split()
words_amount = len(split)
del_spaces = text.replace(" ", "")
letters_amount = len(del_spaces)
print (letters_amount / words_amount )