Created
October 28, 2019 00:55
-
-
Save kirkdotcam/11f6b314ecdf38488aac4bf58ff72b90 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#announcer removes a door randomly, can't be contestant_choice or prize_door | |
to_remove = contestant_choice | |
while(to_remove == contestant_choice or to_remove == prize_door): | |
to_remove = random.choice(doors) | |
doors.remove(to_remove) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment