I am trying to find the square root of 2 to 100 decimal places, but it only shows to like 10 by default, how can I change this?
You can use sympy and evalf()
from sympy import sqrt print(sqrt(2).evalf(101))