Astan Chee <[EMAIL PROTECTED]> wrote:

> I have a math function that looks like this
> sin (Theta) = 5/6
> How do I find Theta (in degrees) in python?

import math
theta = math.asin(5/6) * 180/math.pi

-- [mdw]
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to