Browse Source

la fonction marche

master
paul.bertrand 2 weeks ago
parent
commit
0c2a20c1ce
  1. 9
      paul.py

9
paul.py

@ -0,0 +1,9 @@
from math import sqrt
def point(x, y):
distance = 300
if x<500 and sqrt((x-300)**2+y**2)> distance:
return 2
elif x > 500 and sqrt((x - 300)**2+(y + 1000)**2)> distance:
return 2
else:
return 3
Loading…
Cancel
Save