exercise 1.3 update

This commit is contained in:
Tutur33
2023-11-28 22:49:04 +01:00
parent 24dbf6099f
commit 16a195bfbe
@@ -1,5 +1,10 @@
from math import *
# Display the numerical value of √(4.63 - 15/16)
# Compare with your calculator.
from math import sqrt
a = sqrt(4.6**3 - 15/16)
print(a)
if a == 9.818273779030608:
print("C'est bien égale")
print("It's equal to my calculator.")