Advertisement
kohme

Word_Count

Jul 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. #Calculates the number of characters in your text
  2. def count():
  3.     n = input("Enter your text below.\n\n")
  4.     x = len(n)
  5.     print("\n\n")
  6.     print(x)
  7.     print("\n")
  8.     count()
  9.  
  10. #run code
  11. count()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement