Advertisement
Reeemon57

Untitled

Jul 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. known_users = ["Alice","Bob","Clair","Dan","Emma","Fred","Georgia","Harry"]
  2.  
  3. while True:
  4. print("Hi!My Name Is Travis")
  5. name = input("What Is Your Name?:").strip().capitalize()
  6.  
  7. if name in known_users:
  8. print("Hello {}!".format(name))
  9. remove = input("Would You Like To Be Removed From The System(y/n)?:")
  10. if remove == "y":
  11. known_users.remove(name)
  12. print("you are removed {}!".format(name))
  13. print("here is the list of users: {}".format(known_users))
  14. break
  15. else:
  16. print("Hmmm, I Dont Think I Have Met You Yet {}!".format(name))
  17. add_me = input("Would You Like To Be Added In The System(y/n)?!:").strip().lower()
  18. if add_me == "y":
  19. known_users.append(name)
  20. print("you are successfully added {}!".format(name))
  21. print("here is the list of users: {}".format(known_users))
  22. break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement