MCPcopy Index your code
hub / github.com/python/cpython / sqrt

Method sqrt

Lib/test/test_builtin.py:1356–1357  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

1354 from math import sqrt
1355 except ImportError:
1356 def sqrt(x):
1357 return pow(x, 0.5)
1358 self.assertEqual(
1359 list(map(lambda x: list(map(sqrt, x)), [[16, 4], [81, 9]])),
1360 [[4.0, 2.0], [9.0, 3.0]]

Callers 15

wFunction · 0.45
d3.min.jsFile · 0.45
rtFunction · 0.45
hrFunction · 0.45
TrFunction · 0.45
QrFunction · 0.45
iFunction · 0.45
NoFunction · 0.45
arcToMethod · 0.45
constructorMethod · 0.45
dpFunction · 0.45
ppFunction · 0.45

Calls 1

powFunction · 0.85

Tested by

no test coverage detected