You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# print and round guess to 8 digits after decimal point
print(f"The estimated square root of {s} is {guess:.8f}")
if __name__ == "__main__":
main()
#additional comments:
'''Avoid performing longer calculations in the Main function. It should really be used for declaring inputs for the functions you've already created '''