Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 24 Online
OpenStudy (anonymous):

hi what mistake in this guess #find the cube root of aperfect cube # x=int(input('enter an integer:')) ans = 0 while ans*ans*ans < abs(x): ans = ans + 1 if ans*ans*ans (1) (abs)(x): print(x), ('is not a perfect cube') elif (x) < (0): ans = -ans print ('cube root of') + str(x) + ('is') + str(ans)

OpenStudy (anonymous):

if ans*ans*ans (1) (abs)(x) there's your bug.

OpenStudy (puzzler7):

You can't have x (1) y. You can have x > y, or x = y, but (1) is not a comparator.

OpenStudy (anonymous):

In Python != is used as "Not Equal" operator. I think thats what you are looking for.

OpenStudy (anonymous):

thank you alot

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!