Python3 atan() Function |
Python 3 Tutorial
- Python3 Tutorial
- Python3 Introduction
- Python3 Environment Setup
- Python3 VScode
- Python3 Basic Syntax
- Python3 Basic Data Types
- Python3 Data Type Conversion
- Python3 Interpreter
- Python3 Comments
- Python3 Operators
- Python3 Numbers
- Python3 Strings
- Python3 Lists
- Python3 Tuples
- Python3 Dictionaries
- Python3 Sets
- Python3 Conditional Control
- Python3 Loop Statements
- Python3 Programming First Step
- Python3 Comprehensions
- Python3 Iterators and Generators
- Python3 with
- Python3 Functions
- Python3 lambda
- Python3 Decorators
- Python3 Data Structures
- Python3 Modules
- Python __name__
- Python3 Input and Output
- Python3 File
- Python3 OS
- Python3 Errors and Exceptions
- Python3 Object-Oriented
- Python3 Namespaces/Scopes
- Python Virtual Environment Creation
- Python Type Annotations
- Python3 Standard Library Overview
- Python3 Examples
- Python Quiz
Python3 Advanced Tutorial
- Python3 Regular Expressions
- Python3 CGI Programming
- Python3 MySQL (mysql-connector)
- Python3 MySQL (PyMySQL)
- Python3 Network Programming
- Python3 SMTP Sending Email
- Python3 Multithreading
- Python3 XML Parsing
- Python3 JSON
- Python3 Date and Time
- Python3 Built-in Functions
- Python3 MongoDB
- Python3 urllib
- Python uWSGI Installation and Configuration
- Python3 pip
- Python3 operator
- Python math
- Python requests
- Python random
- Python OpenAI
- Python Useful Resources
- Python AI Painting
- Python statistics
- Python hashlib
- Python Quantification
- Python pyecharts
- Python selenium Library
- Python Web Scraping
- Python Scrapy Library
- Python Markdown
- Python sys Module
- Python Pickle Module
- Python subprocess Module
- Python queue Module
- Python StringIO Module
- Python logging Module
- Python datetime Module
- Python re Module
- Python csv Module
- Python threading Module
- Python asyncio Module
- Python PyQt
- Python for Loop
- Python while Loop
Deep Dive
Scripting Languages
Programming Languages
Web Design and Development
Development Tools
Software
Web Services
Computer Science
Programming
Scripting
Web Service
Python3.x Python3 atan() Function
Description
atan() returns the arctangent of x in radians.
Syntax
The following is the syntax for the atan() method:
import math
math.atan(x)
Note: atan() is not directly accessible; you need to import the math module and then call the method via the math static object.
Parameters
- x -- A numeric value.
Return Value
Returns the arctangent of x in radians.
Example
The following shows an example of using the atan() method:
#!/usr/bin/python3
import math
print ("atan(0.64) : ", math.atan(0.64))
print ("atan(0) : ", math.atan(0))
print ("atan(10) : ", math.atan(10))
print ("atan(-1) : ", math.atan(-1))
print ("atan(1) : ", math.atan(1))
After running the above example, the output result is:
atan(0.64) : 0.5693131911006619
atan(0) : 0.0
atan(10) : 1.4711276743037347
atan(-1) : -0.7853981633974483
atan(1) : 0.7853981633974483
YouTip