> i have a question.
> Given the string '3+2*6' i need to parse it and obtain the result, so
> 15. Does a module for this operation exists? i need to do simple
> operations, but also on floating point numbers.
Use the builtin function eval to evaluate an arbitrary python expression:
>>> eval("3+2*6")
15
Regards,
Diez