5 lines
63 B
Python
5 lines
63 B
Python
|
|
import math
|
||
|
|
a = math.sqrt(2.0)
|
||
|
|
print(a, a*a)
|
||
|
|
print(a*a == 2.0)
|