Guest User

Untitled

a guest
Sep 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. approved_users = ["Rayna", "Monty", "Peter", "Alice", "Diane", "Georgie", "Harry", "smellybum"]
  2.  
  3. print(len(approved_users))
  4.  
  5. while True:
  6. print("Hi! My name is Travis, The super secure robot")
  7. name = input("Please tell me your name: ").strip().capitalize()
  8.  
  9. if name in approved_users:
  10. print("Name recgnised, Welcome {}!").format(name)
  11. else:
  12. print("Warning!!! Name not reconised")
Add Comment
Please, Sign In to add comment