If you have a string "6", and you do int("6"), you get the number 6.

But if you have a string "2*3" and you do int("2*3") you get a name error.

How do you take an expression in a string, and evaluate the expression
to get a number?

I want to be able to turn the string "2*3" into the number 6.

thanks
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to