Improve coding style of two short completed algorithms (Monte Carlo Simulations)

First and foremost, focus on improving your variable names as this will likely have the biggest positive effect for readability. Next, you should focus on breaking larger pieces of code into smaller functions that serve one specific purpose. These should also have good names that explain what they do. Finally, if you notice any part of the code that is repeated, place that in a function and call the function instead of repeating the same block of code in multiple places. Your ultimate goal should be to make the code more readable.

Try to follow pep8 guidelines. The source code can be downloaded from the attachment or accessed through the following link. https://1drv.ms/u/s!AiezjuZz42bo63ke1Kvb5gGre_Lt?e=Rqx5zg

Sample Solution

This question has been answered.

Get Answer