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

Hello friends, i am stuck on very basic python programming. Create a Python function that Ask the user for a value and print out the square root of the value Thanks,

OpenStudy (atlas):

Can you write a pseudo code for this? Then I will help you further

OpenStudy (e.mccormick):

Are you allowed to use the math library or do you need to make a function that does all the work? If making a function, here is one important concept: accuracy. Due to limits in binary to decimal conversion, there are errors of accuracy. You will need to use some mathematical method for finding the root that does guesses or works it out from one of the classical formulas for finding roots. It will rarely get the actual root, so you want it to give a result when it gets close.

OpenStudy (anonymous):

take a look at the 'raw_input' command (help(raw_input) inside IDLE. Also remember that a square root is equivalent to a number raised to the 0.5 exponent.

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!