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

Perfect Cube Question (Lectures 1 & 2) I have the following code: user_value = raw_input('Enter an integer') comp_guess = 0 while (comp_guess*comp_guess*comp_guess) < abs(user_value): comp_guess = comp_guess + 1 print comp_guess ____________________________ When I run this shell, the console just keeps printing new guesses from 1 ---> infinity, no matter even if I input "1" as the user_value for input. Why doesn't it stop print guesses once (comp_guess^3) is greater than the user_value?

OpenStudy (e.mccormick):

Raw input takes in text. You need to turn it into a number.

OpenStudy (anonymous):

You are right! Thank you for your help. I was asking the user for a string input when I should be asking for an int.

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!