Ask your own question, for FREE!
MIT 6.189 A Gentle Introduction to Programming Using Python (OCW) 8 Online
OpenStudy (anonymous):

Can't figure Exercise OPT.2 #3: "write a list comprehension that finds the integer solutions [x, y] for a circle of radius 5. Don't we need to know where the center is? Even if I assume it's 0 my feeble brain finds it insanely complicated to find both positive and negative values for x and y as well as limiting it to integers. I feel like I'm making a simple problem too complicated. Can anyone help?

OpenStudy (anonymous):

well, perhaps you are - knowing the center would be good, and assuming (0,0) seems like a good idea. but all you need is x**2 + y**2 == 25 for x,y in range(-5,6) rather than range(6) - the positive solutions...

OpenStudy (anonymous):

Thanks so much. Of course, that works perfectly. I was ridiculously trying to produce x and y values with plus or minus square root of x**2 - 25. I appreciate your incisiveness.

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!