It's for python 3:
What I'm trying to do is show the rest of a square root account that only accepts the largest integer possible in response. For example:
import math
x=math.sqrt(87)
print(x)
This code returns 9.327379053088816, I want my code to return only 9 and show me the rest that would be 6 (the bold numbers are the ones I want appearing) since 9² = 81 and 87-81 = 6 ... would be + - what the function + + the function // do in the division. Only now in the square root.
I think I explained what I want the best I could, can anyone help me in this crazy XD request?