How can I write a square root function in python without using pint | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
- 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 Réponse
+ 2
Like this: def wortel(x): return x ** 0.5 x = 4 y = wortel(x)
26th Mar 2022, 4:50 PM
Paul
Paul - avatar