Correzione PEP8
This commit is contained in:
parent
73d34a5cc0
commit
9b41419afb
28
de Buffon.py
28
de Buffon.py
@ -6,40 +6,44 @@ import turtle
|
||||
X = 100
|
||||
Y = 100
|
||||
T = 20
|
||||
L = 5/6*T
|
||||
L = 5 / 6 * T
|
||||
N = 213
|
||||
|
||||
assi = ()
|
||||
|
||||
|
||||
def impostazioni():
|
||||
"""Impostazioni per inizializzare turtle"""
|
||||
turtle.title("Ago di Buffon")
|
||||
turtle.setworldcoordinates(-(X+2), -(Y), X+2, Y)
|
||||
turtle.setworldcoordinates(-(X + 2), -(Y), X + 2, Y)
|
||||
turtle.hideturtle()
|
||||
turtle.speed(0)
|
||||
|
||||
|
||||
def vai(x, y):
|
||||
"""Sposta il cursore al punto (x, y) senza tracciare una linea."""
|
||||
turtle.pu()
|
||||
turtle.pu()
|
||||
turtle.goto(x, y)
|
||||
turtle.pd()
|
||||
|
||||
|
||||
def parquet(t):
|
||||
"""Disegna le assi del parquet."""
|
||||
global X, assi
|
||||
vai(-X, -Y)
|
||||
for x in range(-X, X+1, t):
|
||||
for x in range(-X, X + 1, t):
|
||||
assi += x,
|
||||
turtle.lt(90)
|
||||
turtle.goto(x, Y)
|
||||
vai(x, -Y)
|
||||
turtle.rt(90)
|
||||
vai(x+t, -Y)
|
||||
vai(x + t, -Y)
|
||||
|
||||
|
||||
def ago(l):
|
||||
"""
|
||||
Lancia un'ago.
|
||||
Se incrocia le assi lo colora di rosso e restituisce 1,
|
||||
Se incrocia le assi lo colora di rosso e restituisce 1,
|
||||
altrimenti restituisce 0.
|
||||
"""
|
||||
vai(random.uniform(-X, X), random.uniform(-Y, Y))
|
||||
@ -48,24 +52,24 @@ def ago(l):
|
||||
turtle.fd(l)
|
||||
x2 = turtle.xcor()
|
||||
for x in assi:
|
||||
if (x1 < x < x2) or (x2 < x < x1):
|
||||
if (x1 < x < x2) or (x2 < x < x1):
|
||||
turtle.pencolor("red")
|
||||
turtle.bk(l)
|
||||
turtle.pencolor("black")
|
||||
turtle.pencolor("black")
|
||||
return 1
|
||||
else:
|
||||
return 0
|
||||
|
||||
impostazioni()
|
||||
|
||||
impostazioni()
|
||||
parquet(T)
|
||||
p = 0
|
||||
for i in range(N):
|
||||
p += ago(L)
|
||||
try:
|
||||
π = (2*L)/(T*p/N)
|
||||
π = (2 * L) / (T * p / N)
|
||||
except ZeroDivisionError:
|
||||
π = 0
|
||||
print(π)
|
||||
|
||||
print("Scarto:", abs(100-(π/math.pi*100)), "%")
|
||||
print("Scarto:", abs(100 - (π / math.pi * 100)), "%")
|
||||
turtle.mainloop()
|
||||
|
Loading…
Reference in New Issue
Block a user