Files
python/fejezet 5/okosságok4.py

5 lines
63 B
Python
Raw Normal View History

2021-12-07 13:52:56 +01:00
import math
a = math.sqrt(2.0)
print(a, a*a)
print(a*a == 2.0)