
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Trigonometric Functions in Python
Python includes following functions that perform trigonometric calculations.
Sr.No | Function & Description |
---|---|
1 | acos(x) Return the arc cosine of x, in radians. |
2 | asin(x) Return the arc sine of x, in radians. |
3 | atan(x) Return the arc tangent of x, in radians. |
4 | atan2(y, x) Return atan(y / x), in radians. |
5 | cos(x) Return the cosine of x radians.. |
6 | hypot(x, y) Return the Euclidean norm, sqrt(x*x + y*y). |
7 | sin(x) Return the sine of x radians. |
8 | tan(x) Return the tangent of x radians. |
9 | degrees(x) Converts angle x from radians to degrees. |
10 | radians(x) Converts angle x from degrees to radians. |
- Related Articles
- Trigonometric Functions in C#
- Trigonometric Functions in Java
- Get the Trigonometric inverse sin in Python
- Get the Trigonometric inverse cosine in Python
- Get the Trigonometric inverse tangent in Python
- Mathematical Functions in Python - Special Functions and Constants
- Decimal Functions in Python
- Statistical Functions in Python
- Mathematical Functions in Python?
- Partial Functions in Python?
- Time Functions in Python?
- Operator Functions in Python
- Log functions in Python
- Iterator Functions in Python
- Get the Trigonometric sin of an angle in Python

Advertisements