Advertisement
someone3709

i hate your name program

Jun 16th, 2021
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. import time
  2. # a program where it hates your name
  3.  
  4. def insult_machine():
  5.     name = input("what is your name?")
  6.     print("well nice to meet you", name)
  7.     time.sleep(1)
  8.     print("man i feel bad about your name being", name)
  9.     time.sleep(1)
  10.     print("get a better one.")
  11.     time.sleep(1)
  12.     print("nerd")
  13.  
  14.  
  15. insult_machine()
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement