How to count the number of letters in a string without the spaces?

后端 未结 13 992
梦谈多话
梦谈多话 2020-12-31 07:45

This is my solution resulting in an error. Returns 0

PS: I\'d still love a fix to my code :)

from collections import Counter
import          


        
13条回答
  •  感动是毒
    2020-12-31 08:22

    n=str(input("Enter word: ").replace(" ",""))
    
    ans=0
    for i in n:
        ans=ans+1
    print(ans)    
    

提交回复
热议问题