Hi Reader,
βLast week, I shared a probability puzzle and asked YOU to simulate the problem using Python!
Today, I'll share my solution as well as some great solutions submitted by readers!
You are a contestant on a game show. In front of you are three closed doors. Behind one of the doors is a car, and behind the other two doors are goats. Your goal is to pick the door with the car.
The host asks you to choose a door. You tell the host your choice. Instead of telling you whether your choice was correct, the host (who knows which door contains the car) opens one of the two doors you didn't choose and reveals a goat.
You now have the opportunity toΒ keep your original choiceΒ orΒ switch your choice to the door that is still closed. Which should you choose?
Specifically, I want you to simulate that you are a contestant on this show 1000 times. Each time, you pick a random door as your first choice, let the host open a door that reveals a goat, and then switch your choice to the door that the host didn't open.Β With that strategy (known as the "always switch" strategy), how often do you win the car?
I'll explain this code piece-by-piece:
π Since we need to simulate random selections, the usual choice is Python's random module.
π I set the number of games to simulate, a counter to track the number of wins, and a list to represent the three doors.
π This for loop simulates 1000 independent games.
During each game, the host randomly selects one of the three doors for the car, and the player randomly selects one of the three doors as their first pick for where the car might be. To do this, the random.choice() function selects one of the three elements from the doors list.
π The host must open one of the closed doors, and I need to make sure that they're not opening the door with the car or the door that the player already chose.
To do this, I convert the doors list to a set, convert the car's location and the player's first pick to another set, and then take the difference. Thus, host_can_open is a set of all of the doors that don't contain the car and weren't picked by the player.
host_can_open contains either one or two doors, and I use random.choice() to select which door the host actually opens and store that in host_opens. (random.choice() doesn't work with sets, which is why I converted it to a list.)
π Next, we need the player to switch their pick to the one door that is still closed. Again, we use a set difference operation. But why is the min() function there?
Well, the set difference operation returns a set that contains a single integer, such as {3}. In order to access just the integer, the most elegant solution is to take the min (or max) of that set!
π Finally, I check whether the player's second pick matches the location of the car. If so, we increment the win count.
π This is just a bit of debugging code. It runs during the first five games, and shows me the value of four of the objects. This allows me to double-check that the values being selected obey the rules of the game.
These are called "self-documenting expressions", which were added in Python 3.8. Because of the equals sign, the f-string will print "first_pick=2" (for example). Without the equals sign, the f-string would just print "2", and I'd have to remember what the 2 represents.
π Finally, we print the win percentage, which is calculated by dividing the win count by the number of games.
I start the f-string with a \n in order to add a line break, and I add the :.1% at the end to format the result as a percentage with 1 digit after the decimal.
Here's an example of the output:
To be clear, the first five lines represent the first five games (out of 1000). In those five games, the player won the car three times.
The win percentage is how often the player won the car by using the "always switch" strategy across 1000 games. In this case it was 68.8%, but you'll find that this percentage hovers around 66.6%. If you want to confirm this for yourself, you can run my code online.
This result is counter-intuitive to many people, but the "always switch" strategy is twice as likely to win as the "never switch" strategy! (To be clear, this result only holds if we follow the specific rules above, which I clarified in detail in last week's email.)
If you want to read more about this puzzle, check out the Wikipedia article about the Monty Hall problem.
One of my favorite solutions was from FΓ‘bio C., who received help from Bing AI when writing this code:
Here's what I like about FΓ‘bio's code:
Another solution I really enjoyed was from Aaron S.:
Here's what I like about Aaron's code:
JosΓ© P. performed an increasing number of simulations to demonstrate that as the number of games increases, the result converges towards a winning percentage of 66.6%:
Finally, Conor G. sent me a link to his collection of Monty Hall simulations written in Lua, Perl, C, Fortran, COBOL, Pascal, PHP, and (of course) Python! π€―
Thank you so much to everyone who submitted a solution! πππ
I look forward to doing another "Code Challenge" in a future Tuesday Tip!
If you enjoyed this weekβs newsletter, please forward it to a friend!Β Takes only a few seconds, and it really helps me out! π
Watch out for a special announcement next week... π
- Kevin
P.S. Eminem raps pillow quotes (video, but safe for work!)
Did someone awesome forward you this email?Β Sign up here to receive data science tips every week!β
Join 25,000+ aspiring Data Scientists and receive Python & Data Science tips every Tuesday!
Hi Reader, Next week, Iβll be offering a Black Friday sale on ALL of my courses. Iβll send you the details this Thursday! π¨ π Tip #50: What is a "method" in Python? In Python, a method is a function that can be used on an object because of the object's type. For example, if you create a Python list, the "append" method can be used on that list. All lists have an "append" method simply because they are lists: If you create a Python string, the "upper" method can be used on that string simply...
Hi Reader, I appreciate everyone who has emailed to check on me and my family post-Helene! It has been more than 6 weeks since the hurricane, and most homes in Asheville (mine included) still don't have clean, running water. We're hopeful that water service will return within the next month. In the meantime, we're grateful for all of the aid agencies providing free bottled water, free meals, places to shower, and so much more. β€οΈ Thanks for allowing me to share a bit of my personal life with...
Hi Reader, Regardless of whether you enrolled, thanks for sticking with me through the launch of my new course! π I've already started exploring topics for the next course... π π Link of the week git cheat sheet (PDF) A well-organized and highly readable cheat sheet from Julia Evans, the brilliant mind behind Wizard Zines! π Tip #48: Three ways to set your environment variables in Python I was playing around with Mistral LLM this weekend (via LangChain in Python), and I needed to set an...