Skip to content

Instantly share code, notes, and snippets.

@edwvilla
Created August 9, 2020 01:59
Show Gist options
  • Save edwvilla/d6df1c28e593ffb7d492377d592dd8f4 to your computer and use it in GitHub Desktop.
Save edwvilla/d6df1c28e593ffb7d492377d592dd8f4 to your computer and use it in GitHub Desktop.
import random
def estimate_pi(n):
num_point_circle = 0
num_point_total = 0
for _ in range(n):
x = random.uniform(0, 1)
y = random.uniform(0, 1)
distance = x**2 + y**2
if distance <= 1:
num_point_circle += 1
num_point_total += 1
return 4 * num_point_circle/num_point_total
print(estimate_pi(10000))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment