This is a convertor that takes normal written mathematical text expressions as string input and return python-expression which you can also fetch the numerical value using tte.eval(<YOUR EXPRRSSION HERE>)

for instance input = "2+ln2√π" , output = "2+(math.log(2))*(math.sqrt(math.pi))"

