Guest User

Untitled

a guest
Oct 18th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. while x == True:
  2. request = input(">>:")
  3. if(request != "hi","Hi"):
  4. time.sleep(1)
  5. print_slow(random.choice(welcome))
  6.  
  7. while x == True:
  8. request = input(">>:")
  9. if request.lower() != "hi":
  10. time.sleep(1)
  11. print_slow(random.choice(welcome))
  12.  
  13. while x == True:
  14. request = input(">>: ")
  15. if (request.lower() != 'hi'):
  16. time.sleep(1)
  17. print_slow(random.choice(welcome))
Add Comment
Please, Sign In to add comment