diff --git a/main.py b/main.py new file mode 100644 index 0000000..c52f80a --- /dev/null +++ b/main.py @@ -0,0 +1,5 @@ +from afficheStats import afficheStats + +if __name__ == "__main__": + joueur = input("Entrez le nom du joueur : ") + afficheStats(joueur) diff --git a/paul.py b/paul.py deleted file mode 100644 index 5c5fa65..0000000 --- a/paul.py +++ /dev/null @@ -1,9 +0,0 @@ -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 \ No newline at end of file