I m 试图做这一科学计算。 它是一种投入,然后我利用电子数据得出结果。 I m试图将任何潜在的“in(ang)”变为“mp(math)”。
import mpmath
input_eq = input( )
input_eq = input_eq.replace( sin , mpmath.sin )
由于可以发挥几个三重职能,而我可以写一下:
input_eq = input_eq.replace( sin( , mpmath.sin(mpmath.radians( ).replace( ) , )) )
还审判:
input_eq = re.sub(r sin[()] , , input_eq)
# This one treats every letter or character as a separate entity.
# Also tried:
input_eq = re.sub("sin(.*?)","()",input_eq)
# But this one removes inside the parentheses as well