Use more decimals in Python
问题 I already have a code which uses the bisection method to determine the value of something, the problem is that I need a value so precise, more than 15 decimals, and at some point python stops getting smaller digits I am aware of the Decimals library but do I really have to rewrite every parameter in the code as Decimals(parameter) ? because I have lots of parameters is there a way to convert every float in the code to Decimals universally? or is there a way to solve this problem all together