Python: How can I calculate the average word length in a sentence using the .split command?

后端 未结 9 1652
甜味超标
甜味超标 2021-01-03 11:40

new to python here. I am trying to write a program that calculate the average word length in a sentence and I have to do it using the .split command. btw im using python 3.2

9条回答
  •  说谎
    说谎 (楼主)
    2021-01-03 12:01

    >>> sentence = "Hi my name is Bob"
    >>> words = sentence.split()
    >>> sum(map(len, words))/len(words)
    2.6
    

提交回复
热议问题