How can I write a square root function in python without using pint | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How can I write a square root function in python without using pint

26th Mar 2022, 4:37 PM
Kinyuy Kelly Bright Bih
Kinyuy Kelly Bright Bih - avatar
1 Answer
+ 2
Like this: def wortel(x): return x ** 0.5 x = 4 y = wortel(x)
26th Mar 2022, 4:50 PM
Paul
Paul - avatar