Python Forum

Full Version: Math opperators
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
can I calculate sin, cos, and tan in python if so how and if not are there any modules I can download and import into my project??? Smile
sure you can
begin with:
import math
then all functions are here https://docs.python.org/2/library/math.html
or for python 3.6 https://docs.python.org/3.6/library/math.html
some examples here: https://www.dotnetperls.com/math-python
Thanks!!! Smile