Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. def epicINATOR(word): #defines the function
  2. print(word+"???") #prints it back with some question marks
  3. print("more like...")
  4. yoke = word+"INATORRRRR!!!" #adds INATORRR to the word you type in
  5. yoke = yoke.upper() #makes is UPPER CASE
  6. print(yoke)
  7. print("THE ROMAN GOD OF " + word.upper() +"ING!") #sticks the result in a sentance
  8.  
  9. while True:
  10. epicINATOR(input("Giveth me a word mortal.. ")) #calls the function with a user input as it's value
  11.  
  12. """
  13. OUTPUT LOOKS LIKE THIS>>>
  14.  
  15. Giveth me a word mortal.. milk
  16. milk???
  17. more like...
  18. MILKINATORRRRR!!!
  19. THE ROMAN GOD OF MILKING!
  20. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement