Python Forum
Python Forum
>
Python Coding
>
General Coding Help
> Math opperators
Full Version:
Math opperators
You're currently viewing a stripped down version of our content.
View the full version
with proper formatting.
Zman350x
Feb-06-2017, 04:08 AM
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???
Larz60+
Feb-06-2017, 04:20 AM
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
Zman350x
Feb-06-2017, 07:22 PM
Thanks!!!
Python Forum
>
Python Coding
>
General Coding Help
> Math opperators