mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 15:07:31 +02:00
10 lines
210 B
Python
10 lines
210 B
Python
# 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("It's equal to my calculator.") |