Advertisement
biswasrohit20

sp

Mar 28th, 2021
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. user_text = input()
  2. output = ''
  3. for c in user_text:
  4. if c != " " and c != "," and c != ".":
  5. output += c
  6.  
  7. print(len(output))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement