Advertisement
Adehumble

Week2 Coding Exercise 4

Feb 7th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. #4
  2. def long_function(character):
  3.     print(len(character) >7)
  4.  
  5. print("\tHello! Dear User. This program is written to test that the number of characters in a word is more than 7. \n \tIt will return a FALSE statement if it's otherwise.")
  6. print("_______"*17)
  7.  
  8. word=input("Please, enter any word of your choice, ")
  9. long_function(word)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement