From 7d0fbb01cb6d6fbcbb716126da8e9a5b90d066e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Renaud?= Date: Wed, 17 Sep 2025 20:26:15 +0200 Subject: [PATCH] Change to english print --- pi/pi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pi/pi.py b/pi/pi.py index a732bb3..b4e784b 100644 --- a/pi/pi.py +++ b/pi/pi.py @@ -11,7 +11,7 @@ def pi_decimals(n): # Exemple d'utilisation : if __name__ == "__main__": - n = int(input("Combien de décimales de π souhaitez-vous ? ")) + n = int(input("How many decimal of pi you want ? ")) valeur_pi = pi_decimals(n) - print(f"π avec {n} décimales :\n{valeur_pi}") + print(f"π with {n} decimal :\n{valeur_pi}")