Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- leader_question = input("You are eligible to be the camp leader. Do you want to be the camp leader? ").lower()
- if leader_question == "yes" or leader_question == "y":
- print("You are now the camp leader.")
- elif leader_question == "no" or leader_question == "n":
- print("Someone else will be chosen to be the camp leader")
- else:
- print("Answer with yes/y or no/n please")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement