From f92daf879fe7a5e7056f4737868609981f939c50 Mon Sep 17 00:00:00 2001 From: Elith Date: Sun, 16 Mar 2025 18:47:49 +0100 Subject: [PATCH] Suppression du fichier paul.py --- main.py | 5 +++++ paul.py | 9 --------- 2 files changed, 5 insertions(+), 9 deletions(-) create mode 100644 main.py delete mode 100644 paul.py 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