Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 37
#---------------------------------------------------------------- # Sample code for UEET2533 Information Theory and Coding # by Chong Zan Kai # Email [email protected] # Universiti Tunku Abdul Rahman, Malaysia. # # Demonstrate how to model Monty Hall Problem with Sage. # # Last modified on 20-Jan-2015. #---------------------------------------------------------------- # # Problem: # Suppose you're on a game show, and you're given the choice of three doors: # Behind one door is a car; behind the others, goats. You pick a door, say No. # 1, and the host, who knows what's behind the doors, opens another door, say # No. 3, which has a goat. He then says to you, "Do you want to pick door No. 2?" # Is it to your advantage to switch your choice? # # http://en.wikipedia.org/wiki/Monty_Hall_problem # total_simulation = 1000 # Do no set this value too large. total_win_switch = 0 total_win_no_switch = 0 door_list = ['car', 'goat', 'goat'] for s in range(total_simulation): print ('# Test %d.' % s) # Random shuffle the objects behind the door. shuffle(door_list) print ('There are %d doors on the stage and behind them are %s.' % (len(door_list), door_list)) # Choose a number between 0,1,2..., len(door_list)-1. guest_choice = randrange(len(door_list)) print ('Guest picks door #%d.' % guest_choice) # # Host's show # host_choice_list = [i for i in range(len(door_list)) if (i != guest_choice and door_list[i] != 'car' )] host_choice = choice(host_choice_list) print ('Host opens the door #%d and shows it is a %s. ' % (host_choice, door_list[host_choice])) print ('Host inquires the guest if he/she wants to make a switch.') # # If the guest doesn't switch... # print('Cast 1: The guest doesn\'t switch the door. The object behind door #%s is a %s.' % (guest_choice, door_list[guest_choice])) if door_list[guest_choice] == 'car': total_win_no_switch += 1 print ('The guest has made the right choice.') else: print ('The guest has made the wrong choice.') # # If the guest switch... # new_guest_choice_list = [i for i in range(len(door_list)) if i != guest_choice and i!=host_choice] new_guest_choice = choice(new_guest_choice_list) print('Case 2: The guest makes a switch to door #%d and the object behind is a %s.' % (new_guest_choice, door_list[new_guest_choice])) if door_list[new_guest_choice] == 'car': total_win_switch += 1 print ('The guest has made the right choice.') else: print ('The guest has made the wrong choice.') print ('total_win_no_switch = %d' % total_win_no_switch) print ('total_win_switch = %d' % total_win_switch) print ('') print ('Pr(Win without Switching Door)=%f' % (total_win_no_switch/total_simulation) ) print ('Pr(Win with Switch Door)=%f' % (total_win_switch/total_simulation) )
# Test 0. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 0 total_win_switch = 1 # Test 1. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 0 total_win_switch = 2 # Test 2. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 1 total_win_switch = 2 # Test 3. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 1 total_win_switch = 3 # Test 4. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 2 total_win_switch = 3 # Test 5. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 3 total_win_switch = 3 # Test 6. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 4 # Test 7. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 5 # Test 8. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 6 # Test 9. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 7 # Test 10. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 8 # Test 11. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 9 # Test 12. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 10 # Test 13. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 11 # Test 14. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 3 total_win_switch = 12 # Test 15. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 4 total_win_switch = 12 # Test 16. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 4 total_win_switch = 13 # Test 17. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 4 total_win_switch = 14 # Test 18. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 4 total_win_switch = 15 # Test 19. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 5 total_win_switch = 15 # Test 20. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 5 total_win_switch = 16 # Test 21. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 5 total_win_switch = 17 # Test 22. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 6 total_win_switch = 17 # Test 23. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 6 total_win_switch = 18 # Test 24. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 6 total_win_switch = 19 # Test 25. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 6 total_win_switch = 20 # Test 26. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 7 total_win_switch = 20 # Test 27. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 8 total_win_switch = 20 # Test 28. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 9 total_win_switch = 20 # Test 29. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 9 total_win_switch = 21 # Test 30. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 9 total_win_switch = 22 # Test 31. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 9 total_win_switch = 23 # Test 32. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 9 total_win_switch = 24 # Test 33. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 9 total_win_switch = 25 # Test 34. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 10 total_win_switch = 25 # Test 35. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 11 total_win_switch = 25 # Test 36. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 12 total_win_switch = 25 # Test 37. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 12 total_win_switch = 26 # Test 38. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 13 total_win_switch = 26 # Test 39. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 14 total_win_switch = 26 # Test 40. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 14 total_win_switch = 27 # Test 41. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 15 total_win_switch = 27 # Test 42. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 15 total_win_switch = 28 # Test 43. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 15 total_win_switch = 29 # Test 44. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 15 total_win_switch = 30 # Test 45. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 15 total_win_switch = 31 # Test 46. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 15 total_win_switch = 32 # Test 47. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 16 total_win_switch = 32 # Test 48. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 17 total_win_switch = 32 # Test 49. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 18 total_win_switch = 32 # Test 50. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 18 total_win_switch = 33 # Test 51. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 18 total_win_switch = 34 # Test 52. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 19 total_win_switch = 34 # Test 53. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 19 total_win_switch = 35 # Test 54. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 20 total_win_switch = 35 # Test 55. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 36 # Test 56. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 37 # Test 57. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 38 # Test 58. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 39 # Test 59. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 40 # Test 60. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 41 # Test 61. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 42 # Test 62. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 20 total_win_switch = 43 # Test 63. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 21 total_win_switch = 43 # Test 64. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 21 total_win_switch = 44 # Test 65. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 21 total_win_switch = 45 # Test 66. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 21 total_win_switch = 46 # Test 67. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 22 total_win_switch = 46 # Test 68. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 22 total_win_switch = 47 # Test 69. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 22 total_win_switch = 48 # Test 70. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 22 total_win_switch = 49 # Test 71. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 22 total_win_switch = 50 # Test 72. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 23 total_win_switch = 50 # Test 73. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 24 total_win_switch = 50 # Test 74. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 24 total_win_switch = 51 # Test 75. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 25 total_win_switch = 51 # Test 76. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 25 total_win_switch = 52 # Test 77. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 25 total_win_switch = 53 # Test 78. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 25 total_win_switch = 54 # Test 79. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 26 total_win_switch = 54 # Test 80. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 27 total_win_switch = 54 # Test 81. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 28 total_win_switch = 54 # Test 82. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 29 total_win_switch = 54 # Test 83. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 30 total_win_switch = 54 # Test 84. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 31 total_win_switch = 54 # Test 85. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 31 total_win_switch = 55 # Test 86. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 31 total_win_switch = 56 # Test 87. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 32 total_win_switch = 56 # Test 88. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 32 total_win_switch = 57 # Test 89. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 32 total_win_switch = 58 # Test 90. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 32 total_win_switch = 59 # Test 91. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 33 total_win_switch = 59 # Test 92. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 33 total_win_switch = 60 # Test 93. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 34 total_win_switch = 60 # Test 94. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 35 total_win_switch = 60 # Test 95. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 36 total_win_switch = 60 # Test 96. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 37 total_win_switch = 60 # Test 97. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 38 total_win_switch = 60 # Test 98. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 39 total_win_switch = 60 # Test 99. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 40 total_win_switch = 60 # Test 100. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 40 total_win_switch = 61 # Test 101. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 40 total_win_switch = 62 # Test 102. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 40 total_win_switch = 63 # Test 103. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 40 total_win_switch = 64 # Test 104. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 40 total_win_switch = 65 # Test 105. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 40 total_win_switch = 66 # Test 106. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 41 total_win_switch = 66 # Test 107. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 42 total_win_switch = 66 # Test 108. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 42 total_win_switch = 67 # Test 109. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 43 total_win_switch = 67 # Test 110. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 44 total_win_switch = 67 # Test 111. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 44 total_win_switch = 68 # Test 112. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 44 total_win_switch = 69 # Test 113. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 44 total_win_switch = 70 # Test 114. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 44 total_win_switch = 71 # Test 115. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 45 total_win_switch = 71 # Test 116. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 45 total_win_switch = 72 # Test 117. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 45 total_win_switch = 73 # Test 118. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 45 total_win_switch = 74 # Test 119. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 45 total_win_switch = 75 # Test 120. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 45 total_win_switch = 76 # Test 121. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 45 total_win_switch = 77 # Test 122. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 46 total_win_switch = 77 # Test 123. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 46 total_win_switch = 78 # Test 124. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 46 total_win_switch = 79 # Test 125. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 47 total_win_switch = 79 # Test 126. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 80 # Test 127. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 81 # Test 128. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 82 # Test 129. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 83 # Test 130. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 84 # Test 131. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 85 # Test 132. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 86 # Test 133. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 47 total_win_switch = 87 # Test 134. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 48 total_win_switch = 87 # Test 135. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 48 total_win_switch = 88 # Test 136. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 49 total_win_switch = 88 # Test 137. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 50 total_win_switch = 88 # Test 138. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 51 total_win_switch = 88 # Test 139. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 52 total_win_switch = 88 # Test 140. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 53 total_win_switch = 88 # Test 141. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 53 total_win_switch = 89 # Test 142. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 53 total_win_switch = 90 # Test 143. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 53 total_win_switch = 91 # Test 144. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 53 total_win_switch = 92 # Test 145. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 54 total_win_switch = 92 # Test 146. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 55 total_win_switch = 92 # Test 147. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 56 total_win_switch = 92 # Test 148. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 56 total_win_switch = 93 # Test 149. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 56 total_win_switch = 94 # Test 150. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 56 total_win_switch = 95 # Test 151. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 57 total_win_switch = 95 # Test 152. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 58 total_win_switch = 95 # Test 153. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 58 total_win_switch = 96 # Test 154. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 59 total_win_switch = 96 # Test 155. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 60 total_win_switch = 96 # Test 156. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 60 total_win_switch = 97 # Test 157. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 60 total_win_switch = 98 # Test 158. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 60 total_win_switch = 99 # Test 159. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 61 total_win_switch = 99 # Test 160. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 61 total_win_switch = 100 # Test 161. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 62 total_win_switch = 100 # Test 162. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 62 total_win_switch = 101 # Test 163. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 62 total_win_switch = 102 # Test 164. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 62 total_win_switch = 103 # Test 165. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 62 total_win_switch = 104 # Test 166. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 62 total_win_switch = 105 # Test 167. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 62 total_win_switch = 106 # Test 168. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 63 total_win_switch = 106 # Test 169. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 64 total_win_switch = 106 # Test 170. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 65 total_win_switch = 106 # Test 171. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 66 total_win_switch = 106 # Test 172. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 66 total_win_switch = 107 # Test 173. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 66 total_win_switch = 108 # Test 174. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 66 total_win_switch = 109 # Test 175. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 66 total_win_switch = 110 # Test 176. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 66 total_win_switch = 111 # Test 177. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 67 total_win_switch = 111 # Test 178. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 67 total_win_switch = 112 # Test 179. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 67 total_win_switch = 113 # Test 180. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 67 total_win_switch = 114 # Test 181. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 68 total_win_switch = 114 # Test 182. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 68 total_win_switch = 115 # Test 183. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 68 total_win_switch = 116 # Test 184. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 69 total_win_switch = 116 # Test 185. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 69 total_win_switch = 117 # Test 186. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 69 total_win_switch = 118 # Test 187. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 70 total_win_switch = 118 # Test 188. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 70 total_win_switch = 119 # Test 189. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 70 total_win_switch = 120 # Test 190. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 71 total_win_switch = 120 # Test 191. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 72 total_win_switch = 120 # Test 192. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 72 total_win_switch = 121 # Test 193. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 73 total_win_switch = 121 # Test 194. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 73 total_win_switch = 122 # Test 195. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 74 total_win_switch = 122 # Test 196. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 75 total_win_switch = 122 # Test 197. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 76 total_win_switch = 122 # Test 198. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 76 total_win_switch = 123 # Test 199. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 77 total_win_switch = 123 # Test 200. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 77 total_win_switch = 124 # Test 201. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 77 total_win_switch = 125 # Test 202. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 77 total_win_switch = 126 # Test 203. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 77 total_win_switch = 127 # Test 204. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 77 total_win_switch = 128 # Test 205. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 77 total_win_switch = 129 # Test 206. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 78 total_win_switch = 129 # Test 207. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 79 total_win_switch = 129 # Test 208. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 80 total_win_switch = 129 # Test 209. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 130 # Test 210. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 131 # Test 211. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 132 # Test 212. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 133 # Test 213. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 134 # Test 214. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 135 # Test 215. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 136 # Test 216. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 137 # Test 217. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 138 # Test 218. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 139 # Test 219. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 140 # Test 220. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 141 # Test 221. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 142 # Test 222. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 80 total_win_switch = 143 # Test 223. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 81 total_win_switch = 143 # Test 224. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 81 total_win_switch = 144 # Test 225. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 81 total_win_switch = 145 # Test 226. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 81 total_win_switch = 146 # Test 227. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 82 total_win_switch = 146 # Test 228. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 83 total_win_switch = 146 # Test 229. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 83 total_win_switch = 147 # Test 230. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 83 total_win_switch = 148 # Test 231. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 83 total_win_switch = 149 # Test 232. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 84 total_win_switch = 149 # Test 233. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 85 total_win_switch = 149 # Test 234. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 86 total_win_switch = 149 # Test 235. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 87 total_win_switch = 149 # Test 236. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 87 total_win_switch = 150 # Test 237. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 87 total_win_switch = 151 # Test 238. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 88 total_win_switch = 151 # Test 239. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 88 total_win_switch = 152 # Test 240. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 88 total_win_switch = 153 # Test 241. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 88 total_win_switch = 154 # Test 242. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 88 total_win_switch = 155 # Test 243. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 89 total_win_switch = 155 # Test 244. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 90 total_win_switch = 155 # Test 245. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 90 total_win_switch = 156 # Test 246. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 90 total_win_switch = 157 # Test 247. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 90 total_win_switch = 158 # Test 248. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 91 total_win_switch = 158 # Test 249. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 92 total_win_switch = 158 # Test 250. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 92 total_win_switch = 159 # Test 251. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 92 total_win_switch = 160 # Test 252. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 93 total_win_switch = 160 # Test 253. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 93 total_win_switch = 161 # Test 254. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 93 total_win_switch = 162 # Test 255. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 93 total_win_switch = 163 # Test 256. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 93 total_win_switch = 164 # Test 257. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 93 total_win_switch = 165 # Test 258. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 94 total_win_switch = 165 # Test 259. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 94 total_win_switch = 166 # Test 260. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 95 total_win_switch = 166 # Test 261. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 95 total_win_switch = 167 # Test 262. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 96 total_win_switch = 167 # Test 263. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 97 total_win_switch = 167 # Test 264. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 97 total_win_switch = 168 # Test 265. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 97 total_win_switch = 169 # Test 266. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 97 total_win_switch = 170 # Test 267. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 97 total_win_switch = 171 # Test 268. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 98 total_win_switch = 171 # Test 269. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 98 total_win_switch = 172 # Test 270. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 98 total_win_switch = 173 # Test 271. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 99 total_win_switch = 173 # Test 272. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 99 total_win_switch = 174 # Test 273. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 99 total_win_switch = 175 # Test 274. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 99 total_win_switch = 176 # Test 275. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 99 total_win_switch = 177 # Test 276. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 99 total_win_switch = 178 # Test 277. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 100 total_win_switch = 178 # Test 278. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 100 total_win_switch = 179 # Test 279. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 101 total_win_switch = 179 # Test 280. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 101 total_win_switch = 180 # Test 281. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 101 total_win_switch = 181 # Test 282. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 102 total_win_switch = 181 # Test 283. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 182 # Test 284. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 183 # Test 285. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 184 # Test 286. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 185 # Test 287. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 186 # Test 288. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 187 # Test 289. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 188 # Test 290. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 189 # Test 291. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 190 # Test 292. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 191 # Test 293. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 192 # Test 294. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 102 total_win_switch = 193 # Test 295. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 103 total_win_switch = 193 # Test 296. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 104 total_win_switch = 193 # Test 297. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 105 total_win_switch = 193 # Test 298. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 105 total_win_switch = 194 # Test 299. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 106 total_win_switch = 194 # Test 300. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 106 total_win_switch = 195 # Test 301. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 107 total_win_switch = 195 # Test 302. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 108 total_win_switch = 195 # Test 303. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 108 total_win_switch = 196 # Test 304. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 108 total_win_switch = 197 # Test 305. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 108 total_win_switch = 198 # Test 306. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 108 total_win_switch = 199 # Test 307. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 108 total_win_switch = 200 # Test 308. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 109 total_win_switch = 200 # Test 309. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 109 total_win_switch = 201 # Test 310. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 110 total_win_switch = 201 # Test 311. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 111 total_win_switch = 201 # Test 312. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 111 total_win_switch = 202 # Test 313. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 111 total_win_switch = 203 # Test 314. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 112 total_win_switch = 203 # Test 315. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 112 total_win_switch = 204 # Test 316. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 113 total_win_switch = 204 # Test 317. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 113 total_win_switch = 205 # Test 318. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 114 total_win_switch = 205 # Test 319. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 114 total_win_switch = 206 # Test 320. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 114 total_win_switch = 207 # Test 321. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 114 total_win_switch = 208 # Test 322. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 114 total_win_switch = 209 # Test 323. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 114 total_win_switch = 210 # Test 324. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 114 total_win_switch = 211 # Test 325. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 114 total_win_switch = 212 # Test 326. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 115 total_win_switch = 212 # Test 327. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 116 total_win_switch = 212 # Test 328. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 116 total_win_switch = 213 # Test 329. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 117 total_win_switch = 213 # Test 330. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 118 total_win_switch = 213 # Test 331. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 119 total_win_switch = 213 # Test 332. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 120 total_win_switch = 213 # Test 333. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 121 total_win_switch = 213 # Test 334. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 121 total_win_switch = 214 # Test 335. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 122 total_win_switch = 214 # Test 336. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 122 total_win_switch = 215 # Test 337. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 122 total_win_switch = 216 # Test 338. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 122 total_win_switch = 217 # Test 339. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 123 total_win_switch = 217 # Test 340. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 123 total_win_switch = 218 # Test 341. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 123 total_win_switch = 219 # Test 342. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 123 total_win_switch = 220 # Test 343. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 124 total_win_switch = 220 # Test 344. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 124 total_win_switch = 221 # Test 345. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 124 total_win_switch = 222 # Test 346. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 125 total_win_switch = 222 # Test 347. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 125 total_win_switch = 223 # Test 348. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 126 total_win_switch = 223 # Test 349. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 126 total_win_switch = 224 # Test 350. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 127 total_win_switch = 224 # Test 351. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 127 total_win_switch = 225 # Test 352. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 128 total_win_switch = 225 # Test 353. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 128 total_win_switch = 226 # Test 354. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 128 total_win_switch = 227 # Test 355. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 128 total_win_switch = 228 # Test 356. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 128 total_win_switch = 229 # Test 357. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 128 total_win_switch = 230 # Test 358. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 128 total_win_switch = 231 # Test 359. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 129 total_win_switch = 231 # Test 360. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 129 total_win_switch = 232 # Test 361. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 129 total_win_switch = 233 # Test 362. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 130 total_win_switch = 233 # Test 363. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 131 total_win_switch = 233 # Test 364. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 132 total_win_switch = 233 # Test 365. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 132 total_win_switch = 234 # Test 366. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 132 total_win_switch = 235 # Test 367. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 132 total_win_switch = 236 # Test 368. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 132 total_win_switch = 237 # Test 369. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 132 total_win_switch = 238 # Test 370. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 133 total_win_switch = 238 # Test 371. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 133 total_win_switch = 239 # Test 372. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 134 total_win_switch = 239 # Test 373. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 134 total_win_switch = 240 # Test 374. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 135 total_win_switch = 240 # Test 375. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 135 total_win_switch = 241 # Test 376. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 135 total_win_switch = 242 # Test 377. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 136 total_win_switch = 242 # Test 378. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 136 total_win_switch = 243 # Test 379. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 136 total_win_switch = 244 # Test 380. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 137 total_win_switch = 244 # Test 381. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 137 total_win_switch = 245 # Test 382. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 138 total_win_switch = 245 # Test 383. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 138 total_win_switch = 246 # Test 384. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 139 total_win_switch = 246 # Test 385. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 139 total_win_switch = 247 # Test 386. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 140 total_win_switch = 247 # Test 387. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 141 total_win_switch = 247 # Test 388. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 141 total_win_switch = 248 # Test 389. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 141 total_win_switch = 249 # Test 390. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 141 total_win_switch = 250 # Test 391. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 141 total_win_switch = 251 # Test 392. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 142 total_win_switch = 251 # Test 393. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 142 total_win_switch = 252 # Test 394. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 143 total_win_switch = 252 # Test 395. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 144 total_win_switch = 252 # Test 396. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 145 total_win_switch = 252 # Test 397. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 145 total_win_switch = 253 # Test 398. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 146 total_win_switch = 253 # Test 399. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 147 total_win_switch = 253 # Test 400. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 147 total_win_switch = 254 # Test 401. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 148 total_win_switch = 254 # Test 402. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 149 total_win_switch = 254 # Test 403. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 149 total_win_switch = 255 # Test 404. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 149 total_win_switch = 256 # Test 405. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 149 total_win_switch = 257 # Test 406. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 149 total_win_switch = 258 # Test 407. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 149 total_win_switch = 259 # Test 408. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 150 total_win_switch = 259 # Test 409. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 151 total_win_switch = 259 # Test 410. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 152 total_win_switch = 259 # Test 411. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 260 # Test 412. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 261 # Test 413. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 262 # Test 414. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 263 # Test 415. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 264 # Test 416. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 265 # Test 417. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 266 # Test 418. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 152 total_win_switch = 267 # Test 419. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 153 total_win_switch = 267 # Test 420. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 154 total_win_switch = 267 # Test 421. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 154 total_win_switch = 268 # Test 422. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 155 total_win_switch = 268 # Test 423. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 156 total_win_switch = 268 # Test 424. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 157 total_win_switch = 268 # Test 425. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 157 total_win_switch = 269 # Test 426. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 158 total_win_switch = 269 # Test 427. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 158 total_win_switch = 270 # Test 428. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 158 total_win_switch = 271 # Test 429. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 158 total_win_switch = 272 # Test 430. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 158 total_win_switch = 273 # Test 431. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 159 total_win_switch = 273 # Test 432. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 159 total_win_switch = 274 # Test 433. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 159 total_win_switch = 275 # Test 434. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 160 total_win_switch = 275 # Test 435. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 161 total_win_switch = 275 # Test 436. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 162 total_win_switch = 275 # Test 437. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 162 total_win_switch = 276 # Test 438. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 162 total_win_switch = 277 # Test 439. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 163 total_win_switch = 277 # Test 440. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 164 total_win_switch = 277 # Test 441. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 164 total_win_switch = 278 # Test 442. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 164 total_win_switch = 279 # Test 443. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 165 total_win_switch = 279 # Test 444. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 165 total_win_switch = 280 # Test 445. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 166 total_win_switch = 280 # Test 446. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 166 total_win_switch = 281 # Test 447. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 166 total_win_switch = 282 # Test 448. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 167 total_win_switch = 282 # Test 449. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 167 total_win_switch = 283 # Test 450. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 168 total_win_switch = 283 # Test 451. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 168 total_win_switch = 284 # Test 452. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 169 total_win_switch = 284 # Test 453. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 170 total_win_switch = 284 # Test 454. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 170 total_win_switch = 285 # Test 455. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 171 total_win_switch = 285 # Test 456. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 171 total_win_switch = 286 # Test 457. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 172 total_win_switch = 286 # Test 458. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 172 total_win_switch = 287 # Test 459. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 172 total_win_switch = 288 # Test 460. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 173 total_win_switch = 288 # Test 461. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 174 total_win_switch = 288 # Test 462. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 174 total_win_switch = 289 # Test 463. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 174 total_win_switch = 290 # Test 464. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 174 total_win_switch = 291 # Test 465. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 174 total_win_switch = 292 # Test 466. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 174 total_win_switch = 293 # Test 467. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 175 total_win_switch = 293 # Test 468. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 294 # Test 469. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 295 # Test 470. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 296 # Test 471. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 297 # Test 472. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 298 # Test 473. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 299 # Test 474. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 300 # Test 475. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 301 # Test 476. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 175 total_win_switch = 302 # Test 477. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 176 total_win_switch = 302 # Test 478. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 176 total_win_switch = 303 # Test 479. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 176 total_win_switch = 304 # Test 480. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 177 total_win_switch = 304 # Test 481. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 177 total_win_switch = 305 # Test 482. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 177 total_win_switch = 306 # Test 483. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 177 total_win_switch = 307 # Test 484. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 177 total_win_switch = 308 # Test 485. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 178 total_win_switch = 308 # Test 486. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 178 total_win_switch = 309 # Test 487. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 178 total_win_switch = 310 # Test 488. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 178 total_win_switch = 311 # Test 489. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 178 total_win_switch = 312 # Test 490. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 179 total_win_switch = 312 # Test 491. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 179 total_win_switch = 313 # Test 492. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 179 total_win_switch = 314 # Test 493. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 180 total_win_switch = 314 # Test 494. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 180 total_win_switch = 315 # Test 495. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 180 total_win_switch = 316 # Test 496. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 181 total_win_switch = 316 # Test 497. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 181 total_win_switch = 317 # Test 498. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 181 total_win_switch = 318 # Test 499. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 181 total_win_switch = 319 # Test 500. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 181 total_win_switch = 320 # Test 501. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 181 total_win_switch = 321 # Test 502. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 181 total_win_switch = 322 # Test 503. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 182 total_win_switch = 322 # Test 504. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 182 total_win_switch = 323 # Test 505. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 182 total_win_switch = 324 # Test 506. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 182 total_win_switch = 325 # Test 507. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 183 total_win_switch = 325 # Test 508. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 184 total_win_switch = 325 # Test 509. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 184 total_win_switch = 326 # Test 510. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 184 total_win_switch = 327 # Test 511. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 185 total_win_switch = 327 # Test 512. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 186 total_win_switch = 327 # Test 513. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 187 total_win_switch = 327 # Test 514. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 187 total_win_switch = 328 # Test 515. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 188 total_win_switch = 328 # Test 516. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 188 total_win_switch = 329 # Test 517. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 188 total_win_switch = 330 # Test 518. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 188 total_win_switch = 331 # Test 519. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 189 total_win_switch = 331 # Test 520. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 189 total_win_switch = 332 # Test 521. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 189 total_win_switch = 333 # Test 522. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 190 total_win_switch = 333 # Test 523. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 190 total_win_switch = 334 # Test 524. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 190 total_win_switch = 335 # Test 525. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 190 total_win_switch = 336 # Test 526. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 190 total_win_switch = 337 # Test 527. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 190 total_win_switch = 338 # Test 528. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 190 total_win_switch = 339 # Test 529. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 190 total_win_switch = 340 # Test 530. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 191 total_win_switch = 340 # Test 531. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 191 total_win_switch = 341 # Test 532. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 192 total_win_switch = 341 # Test 533. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 192 total_win_switch = 342 # Test 534. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 192 total_win_switch = 343 # Test 535. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 193 total_win_switch = 343 # Test 536. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 193 total_win_switch = 344 # Test 537. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 194 total_win_switch = 344 # Test 538. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 195 total_win_switch = 344 # Test 539. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 195 total_win_switch = 345 # Test 540. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 195 total_win_switch = 346 # Test 541. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 195 total_win_switch = 347 # Test 542. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 196 total_win_switch = 347 # Test 543. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 196 total_win_switch = 348 # Test 544. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 197 total_win_switch = 348 # Test 545. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 197 total_win_switch = 349 # Test 546. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 197 total_win_switch = 350 # Test 547. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 197 total_win_switch = 351 # Test 548. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 197 total_win_switch = 352 # Test 549. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 198 total_win_switch = 352 # Test 550. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 198 total_win_switch = 353 # Test 551. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 199 total_win_switch = 353 # Test 552. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 200 total_win_switch = 353 # Test 553. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 200 total_win_switch = 354 # Test 554. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 200 total_win_switch = 355 # Test 555. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 201 total_win_switch = 355 # Test 556. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 201 total_win_switch = 356 # Test 557. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 201 total_win_switch = 357 # Test 558. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 201 total_win_switch = 358 # Test 559. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 202 total_win_switch = 358 # Test 560. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 203 total_win_switch = 358 # Test 561. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 203 total_win_switch = 359 # Test 562. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 203 total_win_switch = 360 # Test 563. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 204 total_win_switch = 360 # Test 564. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 205 total_win_switch = 360 # Test 565. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 205 total_win_switch = 361 # Test 566. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 205 total_win_switch = 362 # Test 567. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 205 total_win_switch = 363 # Test 568. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 205 total_win_switch = 364 # Test 569. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 205 total_win_switch = 365 # Test 570. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 205 total_win_switch = 366 # Test 571. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 206 total_win_switch = 366 # Test 572. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 207 total_win_switch = 366 # Test 573. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 208 total_win_switch = 366 # Test 574. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 208 total_win_switch = 367 # Test 575. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 208 total_win_switch = 368 # Test 576. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 209 total_win_switch = 368 # Test 577. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 209 total_win_switch = 369 # Test 578. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 209 total_win_switch = 370 # Test 579. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 210 total_win_switch = 370 # Test 580. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 211 total_win_switch = 370 # Test 581. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 211 total_win_switch = 371 # Test 582. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 212 total_win_switch = 371 # Test 583. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 212 total_win_switch = 372 # Test 584. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 212 total_win_switch = 373 # Test 585. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 213 total_win_switch = 373 # Test 586. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 213 total_win_switch = 374 # Test 587. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 214 total_win_switch = 374 # Test 588. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 214 total_win_switch = 375 # Test 589. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 214 total_win_switch = 376 # Test 590. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 215 total_win_switch = 376 # Test 591. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 216 total_win_switch = 376 # Test 592. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 216 total_win_switch = 377 # Test 593. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 216 total_win_switch = 378 # Test 594. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 217 total_win_switch = 378 # Test 595. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 217 total_win_switch = 379 # Test 596. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 217 total_win_switch = 380 # Test 597. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 217 total_win_switch = 381 # Test 598. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 218 total_win_switch = 381 # Test 599. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 218 total_win_switch = 382 # Test 600. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 218 total_win_switch = 383 # Test 601. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 219 total_win_switch = 383 # Test 602. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 220 total_win_switch = 383 # Test 603. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 220 total_win_switch = 384 # Test 604. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 221 total_win_switch = 384 # Test 605. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 222 total_win_switch = 384 # Test 606. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 222 total_win_switch = 385 # Test 607. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 223 total_win_switch = 385 # Test 608. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 223 total_win_switch = 386 # Test 609. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 223 total_win_switch = 387 # Test 610. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 223 total_win_switch = 388 # Test 611. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 223 total_win_switch = 389 # Test 612. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 224 total_win_switch = 389 # Test 613. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 224 total_win_switch = 390 # Test 614. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 224 total_win_switch = 391 # Test 615. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 225 total_win_switch = 391 # Test 616. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 225 total_win_switch = 392 # Test 617. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 225 total_win_switch = 393 # Test 618. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 225 total_win_switch = 394 # Test 619. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 225 total_win_switch = 395 # Test 620. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 225 total_win_switch = 396 # Test 621. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 225 total_win_switch = 397 # Test 622. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 226 total_win_switch = 397 # Test 623. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 226 total_win_switch = 398 # Test 624. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 226 total_win_switch = 399 # Test 625. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 226 total_win_switch = 400 # Test 626. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 226 total_win_switch = 401 # Test 627. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 226 total_win_switch = 402 # Test 628. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 226 total_win_switch = 403 # Test 629. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 226 total_win_switch = 404 # Test 630. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 227 total_win_switch = 404 # Test 631. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 227 total_win_switch = 405 # Test 632. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 228 total_win_switch = 405 # Test 633. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 228 total_win_switch = 406 # Test 634. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 228 total_win_switch = 407 # Test 635. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 228 total_win_switch = 408 # Test 636. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 228 total_win_switch = 409 # Test 637. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 228 total_win_switch = 410 # Test 638. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 229 total_win_switch = 410 # Test 639. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 229 total_win_switch = 411 # Test 640. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 230 total_win_switch = 411 # Test 641. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 230 total_win_switch = 412 # Test 642. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 231 total_win_switch = 412 # Test 643. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 231 total_win_switch = 413 # Test 644. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 231 total_win_switch = 414 # Test 645. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 232 total_win_switch = 414 # Test 646. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 233 total_win_switch = 414 # Test 647. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 233 total_win_switch = 415 # Test 648. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 233 total_win_switch = 416 # Test 649. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 234 total_win_switch = 416 # Test 650. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 235 total_win_switch = 416 # Test 651. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 235 total_win_switch = 417 # Test 652. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 236 total_win_switch = 417 # Test 653. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 236 total_win_switch = 418 # Test 654. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 237 total_win_switch = 418 # Test 655. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 237 total_win_switch = 419 # Test 656. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 238 total_win_switch = 419 # Test 657. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 239 total_win_switch = 419 # Test 658. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 420 # Test 659. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 421 # Test 660. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 422 # Test 661. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 423 # Test 662. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 424 # Test 663. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 425 # Test 664. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 426 # Test 665. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 239 total_win_switch = 427 # Test 666. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 240 total_win_switch = 427 # Test 667. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 240 total_win_switch = 428 # Test 668. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 241 total_win_switch = 428 # Test 669. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 241 total_win_switch = 429 # Test 670. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 241 total_win_switch = 430 # Test 671. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 242 total_win_switch = 430 # Test 672. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 242 total_win_switch = 431 # Test 673. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 242 total_win_switch = 432 # Test 674. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 243 total_win_switch = 432 # Test 675. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 243 total_win_switch = 433 # Test 676. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 243 total_win_switch = 434 # Test 677. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 243 total_win_switch = 435 # Test 678. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 244 total_win_switch = 435 # Test 679. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 245 total_win_switch = 435 # Test 680. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 245 total_win_switch = 436 # Test 681. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 245 total_win_switch = 437 # Test 682. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 245 total_win_switch = 438 # Test 683. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 245 total_win_switch = 439 # Test 684. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 245 total_win_switch = 440 # Test 685. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 245 total_win_switch = 441 # Test 686. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 246 total_win_switch = 441 # Test 687. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 246 total_win_switch = 442 # Test 688. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 246 total_win_switch = 443 # Test 689. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 246 total_win_switch = 444 # Test 690. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 247 total_win_switch = 444 # Test 691. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 247 total_win_switch = 445 # Test 692. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 248 total_win_switch = 445 # Test 693. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 446 # Test 694. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 447 # Test 695. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 448 # Test 696. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 449 # Test 697. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 450 # Test 698. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 451 # Test 699. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 452 # Test 700. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 453 # Test 701. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 248 total_win_switch = 454 # Test 702. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 249 total_win_switch = 454 # Test 703. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 249 total_win_switch = 455 # Test 704. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 249 total_win_switch = 456 # Test 705. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 249 total_win_switch = 457 # Test 706. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 250 total_win_switch = 457 # Test 707. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 250 total_win_switch = 458 # Test 708. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 250 total_win_switch = 459 # Test 709. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 250 total_win_switch = 460 # Test 710. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 250 total_win_switch = 461 # Test 711. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 251 total_win_switch = 461 # Test 712. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 251 total_win_switch = 462 # Test 713. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 252 total_win_switch = 462 # Test 714. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 252 total_win_switch = 463 # Test 715. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 253 total_win_switch = 463 # Test 716. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 254 total_win_switch = 463 # Test 717. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 254 total_win_switch = 464 # Test 718. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 255 total_win_switch = 464 # Test 719. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 255 total_win_switch = 465 # Test 720. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 255 total_win_switch = 466 # Test 721. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 255 total_win_switch = 467 # Test 722. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 256 total_win_switch = 467 # Test 723. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 256 total_win_switch = 468 # Test 724. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 256 total_win_switch = 469 # Test 725. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 256 total_win_switch = 470 # Test 726. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 256 total_win_switch = 471 # Test 727. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 256 total_win_switch = 472 # Test 728. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 257 total_win_switch = 472 # Test 729. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 257 total_win_switch = 473 # Test 730. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 257 total_win_switch = 474 # Test 731. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 258 total_win_switch = 474 # Test 732. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 259 total_win_switch = 474 # Test 733. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 259 total_win_switch = 475 # Test 734. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 260 total_win_switch = 475 # Test 735. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 260 total_win_switch = 476 # Test 736. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 261 total_win_switch = 476 # Test 737. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 261 total_win_switch = 477 # Test 738. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 261 total_win_switch = 478 # Test 739. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 261 total_win_switch = 479 # Test 740. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 262 total_win_switch = 479 # Test 741. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 262 total_win_switch = 480 # Test 742. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 263 total_win_switch = 480 # Test 743. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 263 total_win_switch = 481 # Test 744. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 263 total_win_switch = 482 # Test 745. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 263 total_win_switch = 483 # Test 746. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 263 total_win_switch = 484 # Test 747. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 263 total_win_switch = 485 # Test 748. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 263 total_win_switch = 486 # Test 749. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 263 total_win_switch = 487 # Test 750. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 264 total_win_switch = 487 # Test 751. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 264 total_win_switch = 488 # Test 752. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 264 total_win_switch = 489 # Test 753. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 265 total_win_switch = 489 # Test 754. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 265 total_win_switch = 490 # Test 755. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 266 total_win_switch = 490 # Test 756. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 266 total_win_switch = 491 # Test 757. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 266 total_win_switch = 492 # Test 758. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 267 total_win_switch = 492 # Test 759. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 268 total_win_switch = 492 # Test 760. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 268 total_win_switch = 493 # Test 761. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 268 total_win_switch = 494 # Test 762. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 269 total_win_switch = 494 # Test 763. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 269 total_win_switch = 495 # Test 764. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 270 total_win_switch = 495 # Test 765. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 270 total_win_switch = 496 # Test 766. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 271 total_win_switch = 496 # Test 767. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 272 total_win_switch = 496 # Test 768. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 272 total_win_switch = 497 # Test 769. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 273 total_win_switch = 497 # Test 770. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 273 total_win_switch = 498 # Test 771. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 274 total_win_switch = 498 # Test 772. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 274 total_win_switch = 499 # Test 773. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 274 total_win_switch = 500 # Test 774. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 274 total_win_switch = 501 # Test 775. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 275 total_win_switch = 501 # Test 776. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 275 total_win_switch = 502 # Test 777. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 276 total_win_switch = 502 # Test 778. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 276 total_win_switch = 503 # Test 779. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 277 total_win_switch = 503 # Test 780. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 278 total_win_switch = 503 # Test 781. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 279 total_win_switch = 503 # Test 782. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 279 total_win_switch = 504 # Test 783. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 280 total_win_switch = 504 # Test 784. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 280 total_win_switch = 505 # Test 785. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 281 total_win_switch = 505 # Test 786. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 282 total_win_switch = 505 # Test 787. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 282 total_win_switch = 506 # Test 788. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 282 total_win_switch = 507 # Test 789. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 282 total_win_switch = 508 # Test 790. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 282 total_win_switch = 509 # Test 791. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 283 total_win_switch = 509 # Test 792. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 510 # Test 793. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 511 # Test 794. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 512 # Test 795. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 513 # Test 796. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 514 # Test 797. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 515 # Test 798. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 516 # Test 799. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 517 # Test 800. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 518 # Test 801. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 519 # Test 802. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 520 # Test 803. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 521 # Test 804. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 522 # Test 805. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 523 # Test 806. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 524 # Test 807. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 525 # Test 808. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 526 # Test 809. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 283 total_win_switch = 527 # Test 810. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 284 total_win_switch = 527 # Test 811. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 284 total_win_switch = 528 # Test 812. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 284 total_win_switch = 529 # Test 813. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 284 total_win_switch = 530 # Test 814. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 285 total_win_switch = 530 # Test 815. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 285 total_win_switch = 531 # Test 816. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 286 total_win_switch = 531 # Test 817. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 287 total_win_switch = 531 # Test 818. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 287 total_win_switch = 532 # Test 819. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 287 total_win_switch = 533 # Test 820. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 287 total_win_switch = 534 # Test 821. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 287 total_win_switch = 535 # Test 822. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 288 total_win_switch = 535 # Test 823. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 288 total_win_switch = 536 # Test 824. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 289 total_win_switch = 536 # Test 825. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 290 total_win_switch = 536 # Test 826. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 290 total_win_switch = 537 # Test 827. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 291 total_win_switch = 537 # Test 828. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 291 total_win_switch = 538 # Test 829. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 291 total_win_switch = 539 # Test 830. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 291 total_win_switch = 540 # Test 831. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 291 total_win_switch = 541 # Test 832. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 291 total_win_switch = 542 # Test 833. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 291 total_win_switch = 543 # Test 834. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 291 total_win_switch = 544 # Test 835. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 292 total_win_switch = 544 # Test 836. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 292 total_win_switch = 545 # Test 837. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 293 total_win_switch = 545 # Test 838. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 293 total_win_switch = 546 # Test 839. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 294 total_win_switch = 546 # Test 840. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 294 total_win_switch = 547 # Test 841. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 295 total_win_switch = 547 # Test 842. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 295 total_win_switch = 548 # Test 843. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 295 total_win_switch = 549 # Test 844. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 295 total_win_switch = 550 # Test 845. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 295 total_win_switch = 551 # Test 846. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 296 total_win_switch = 551 # Test 847. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 296 total_win_switch = 552 # Test 848. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 296 total_win_switch = 553 # Test 849. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 296 total_win_switch = 554 # Test 850. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 297 total_win_switch = 554 # Test 851. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 298 total_win_switch = 554 # Test 852. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 298 total_win_switch = 555 # Test 853. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 298 total_win_switch = 556 # Test 854. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 298 total_win_switch = 557 # Test 855. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 298 total_win_switch = 558 # Test 856. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 299 total_win_switch = 558 # Test 857. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 559 # Test 858. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 560 # Test 859. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 561 # Test 860. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 562 # Test 861. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 563 # Test 862. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 564 # Test 863. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 565 # Test 864. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 566 # Test 865. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 299 total_win_switch = 567 # Test 866. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 300 total_win_switch = 567 # Test 867. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 300 total_win_switch = 568 # Test 868. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 301 total_win_switch = 568 # Test 869. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 301 total_win_switch = 569 # Test 870. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 301 total_win_switch = 570 # Test 871. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 302 total_win_switch = 570 # Test 872. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 302 total_win_switch = 571 # Test 873. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 303 total_win_switch = 571 # Test 874. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 303 total_win_switch = 572 # Test 875. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 303 total_win_switch = 573 # Test 876. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 304 total_win_switch = 573 # Test 877. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 304 total_win_switch = 574 # Test 878. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 304 total_win_switch = 575 # Test 879. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 305 total_win_switch = 575 # Test 880. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 305 total_win_switch = 576 # Test 881. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 305 total_win_switch = 577 # Test 882. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 306 total_win_switch = 577 # Test 883. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 307 total_win_switch = 577 # Test 884. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 307 total_win_switch = 578 # Test 885. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 307 total_win_switch = 579 # Test 886. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 307 total_win_switch = 580 # Test 887. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 307 total_win_switch = 581 # Test 888. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 307 total_win_switch = 582 # Test 889. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 307 total_win_switch = 583 # Test 890. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 308 total_win_switch = 583 # Test 891. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 309 total_win_switch = 583 # Test 892. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 309 total_win_switch = 584 # Test 893. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 309 total_win_switch = 585 # Test 894. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 310 total_win_switch = 585 # Test 895. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 311 total_win_switch = 585 # Test 896. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 312 total_win_switch = 585 # Test 897. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 313 total_win_switch = 585 # Test 898. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 314 total_win_switch = 585 # Test 899. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 315 total_win_switch = 585 # Test 900. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 316 total_win_switch = 585 # Test 901. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 317 total_win_switch = 585 # Test 902. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 317 total_win_switch = 586 # Test 903. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 318 total_win_switch = 586 # Test 904. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 318 total_win_switch = 587 # Test 905. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 319 total_win_switch = 587 # Test 906. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 319 total_win_switch = 588 # Test 907. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 319 total_win_switch = 589 # Test 908. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 319 total_win_switch = 590 # Test 909. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 320 total_win_switch = 590 # Test 910. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 591 # Test 911. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 592 # Test 912. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 593 # Test 913. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 594 # Test 914. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 595 # Test 915. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 596 # Test 916. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 597 # Test 917. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 320 total_win_switch = 598 # Test 918. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 321 total_win_switch = 598 # Test 919. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 321 total_win_switch = 599 # Test 920. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 321 total_win_switch = 600 # Test 921. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 322 total_win_switch = 600 # Test 922. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 322 total_win_switch = 601 # Test 923. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 322 total_win_switch = 602 # Test 924. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 323 total_win_switch = 602 # Test 925. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 323 total_win_switch = 603 # Test 926. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 323 total_win_switch = 604 # Test 927. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 323 total_win_switch = 605 # Test 928. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 324 total_win_switch = 605 # Test 929. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 324 total_win_switch = 606 # Test 930. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 324 total_win_switch = 607 # Test 931. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 324 total_win_switch = 608 # Test 932. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 324 total_win_switch = 609 # Test 933. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 324 total_win_switch = 610 # Test 934. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 324 total_win_switch = 611 # Test 935. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 325 total_win_switch = 611 # Test 936. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 326 total_win_switch = 611 # Test 937. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 327 total_win_switch = 611 # Test 938. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 328 total_win_switch = 611 # Test 939. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 328 total_win_switch = 612 # Test 940. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 328 total_win_switch = 613 # Test 941. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 329 total_win_switch = 613 # Test 942. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 330 total_win_switch = 613 # Test 943. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 330 total_win_switch = 614 # Test 944. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 330 total_win_switch = 615 # Test 945. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 331 total_win_switch = 615 # Test 946. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 331 total_win_switch = 616 # Test 947. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 332 total_win_switch = 616 # Test 948. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 332 total_win_switch = 617 # Test 949. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 333 total_win_switch = 617 # Test 950. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 334 total_win_switch = 617 # Test 951. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 334 total_win_switch = 618 # Test 952. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 334 total_win_switch = 619 # Test 953. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 334 total_win_switch = 620 # Test 954. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 334 total_win_switch = 621 # Test 955. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 335 total_win_switch = 621 # Test 956. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 335 total_win_switch = 622 # Test 957. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 336 total_win_switch = 622 # Test 958. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 336 total_win_switch = 623 # Test 959. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 337 total_win_switch = 623 # Test 960. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 338 total_win_switch = 623 # Test 961. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 339 total_win_switch = 623 # Test 962. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 340 total_win_switch = 623 # Test 963. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 341 total_win_switch = 623 # Test 964. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 342 total_win_switch = 623 # Test 965. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 342 total_win_switch = 624 # Test 966. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 342 total_win_switch = 625 # Test 967. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 343 total_win_switch = 625 # Test 968. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 344 total_win_switch = 625 # Test 969. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 345 total_win_switch = 625 # Test 970. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 346 total_win_switch = 625 # Test 971. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 346 total_win_switch = 626 # Test 972. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 346 total_win_switch = 627 # Test 973. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 347 total_win_switch = 627 # Test 974. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 347 total_win_switch = 628 # Test 975. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 348 total_win_switch = 628 # Test 976. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 348 total_win_switch = 629 # Test 977. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 349 total_win_switch = 629 # Test 978. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 349 total_win_switch = 630 # Test 979. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 350 total_win_switch = 630 # Test 980. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 351 total_win_switch = 630 # Test 981. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 351 total_win_switch = 631 # Test 982. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 352 total_win_switch = 631 # Test 983. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 352 total_win_switch = 632 # Test 984. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 353 total_win_switch = 632 # Test 985. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 354 total_win_switch = 632 # Test 986. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 354 total_win_switch = 633 # Test 987. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 354 total_win_switch = 634 # Test 988. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 354 total_win_switch = 635 # Test 989. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 355 total_win_switch = 635 # Test 990. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 356 total_win_switch = 635 # Test 991. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #0 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 356 total_win_switch = 636 # Test 992. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 357 total_win_switch = 636 # Test 993. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 357 total_win_switch = 637 # Test 994. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 358 total_win_switch = 637 # Test 995. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #2. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #2 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #1 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 359 total_win_switch = 637 # Test 996. There are 3 doors on the stage and behind them are ['goat', 'goat', 'car']. Guest picks door #1. Host opens the door #0 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #2 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 359 total_win_switch = 638 # Test 997. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #0. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a goat. The guest has made the wrong choice. Case 2: The guest makes a switch to door #1 and the object behind is a car. The guest has made the right choice. total_win_no_switch = 359 total_win_switch = 639 # Test 998. There are 3 doors on the stage and behind them are ['goat', 'car', 'goat']. Guest picks door #1. Host opens the door #2 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #1 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #0 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 360 total_win_switch = 639 # Test 999. There are 3 doors on the stage and behind them are ['car', 'goat', 'goat']. Guest picks door #0. Host opens the door #1 and shows it is a goat. Host inquires the guest if he/she wants to make a switch. Cast 1: The guest doesn't switch the door. The object behind door #0 is a car. The guest has made the right choice. Case 2: The guest makes a switch to door #2 and the object behind is a goat. The guest has made the wrong choice. total_win_no_switch = 361 total_win_switch = 639 Pr(Win without Switching Door)=0.361000 Pr(Win with Switch Door)=0.639000