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}")