Advertisement
7f

test

7f
Jun 16th, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. leader_question = input("You are eligible to be the camp leader. Do you want to be the camp leader? ").lower()
  2. if leader_question == "yes" or leader_question == "y":
  3. print("You are now the camp leader.")
  4. elif leader_question == "no" or leader_question == "n":
  5. print("Someone else will be chosen to be the camp leader")
  6. else:
  7. print("Answer with yes/y or no/n please")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement