0
Average Word Length
Code not working: text = input() words = text.split() size = len(words) total = len(text) avg = total/size print(avg)
1 Respuesta
+ 4
Exclude spaces from total length of text.
Code not working: text = input() words = text.split() size = len(words) total = len(text) avg = total/size print(avg)