+ 1
How can i get the cube root in python ?
I'm trying to write a calculator program and i donnu who to call the cube root can you helf me guys ??
3 Antworten
+ 1
no problem. You could probably use the math library too. You should check it out. https://docs.python.org/3/library/math.html
+ 2
you could use the exponent operator, ** and just do **(1/3)
+ 1
Wow thats cool thanks bro