5 lines
49 B
Python
5 lines
49 B
Python
|
|
import math
|
||
|
|
|
||
|
|
x = math.sqrt(2)
|
||
|
|
print("sqrt =", x)
|