Python - math.acos() function Last Updated : 28 May, 2020 Comments Improve Suggest changes Like Article Like Report Math module contains a number of functions which is used for mathematical operations. The math.acos() function returns the arc cosine value of a number. The value passed in this function should be in between -1 to 1. Syntax: math.acos(x) Parameter:This method accepts only single parameters. x :This parameter is the value to be passed to acos() Returns:This function returns the arc cosine value of a number. Below examples illustrate the use of above function: Example 1: Python3 # Python code to implement # the acos()function # importing "math" # for mathematical operations import math a = math.pi / 6 # returning the value of arc cosine of pi / 6 print ("The value of arc cosine of pi / 6 is : ", end ="") print (math.acos(a)) Output: The value of arc cosine of pi / 6 is : 1.0197267436954502 Example 2: Python3 # Python code implementation of # the acos() function import math import numpy as np import matplotlib.pyplot as plt in_array = np.linspace(-(1 / 3.5 * np.pi), 1 / 3.5 * np.pi, 20) out_array = [] for i in range(len(in_array)): out_array.append(math.acos(in_array[i])) i += 1 print("Input_Array : \n", in_array) print("\nOutput_Array : \n", out_array) plt.plot(in_array, out_array, "go-") plt.title("math.acos()") plt.xlabel("X") plt.ylabel("Y") plt.show() Output: Input_Array : [-0.8975979 -0.80311391 -0.70862992 -0.61414593 -0.51966194 -0.42517795 -0.33069396 -0.23620997 -0.14172598 -0.04724199 0.04724199 0.14172598 0.23620997 0.33069396 0.42517795 0.51966194 0.61414593 0.70862992 0.80311391 0.8975979 ] Output_Array : [2.6850860217724004, 2.50329950258761, 2.358350863035667, 2.2320996324218134, 2.1172515505585388, 2.009954812757658, 1.9078351422171613, 1.809259917693194, 1.7130011090538158, 1.6180559117526183, 1.5235367418371748, 1.4285915445359774, 1.3323327358965993, 1.233757511372632, 1.131637840832135, 1.0243411030312544, 0.9094930211679799, 0.783241790554126, 0.6382931510021833, 0.45650663181739287] Comment More infoAdvertise with us Next Article Python - math.acos() function S SHUBHAMSINGH10 Follow Improve Article Tags : Python Python math-library Python math-library-functions Practice Tags : python Similar Reads Python - math.asin() function Math module contains a number of functions which is used for mathematical operations. The math.asin() function returns the arc sine value of a number. The value passed in this function should be between -1 to 1. Syntax: math.asin(x) Parameter:This method accepts only single parameters. x :This param 2 min read Python | math.fabs() function In Python, math module contains a number of mathematical operations, which can be performed with ease using the module. math.fabs() function returns the absolute value of the number. Syntax: math.fabs(x) Parameter: x: This is a numeric expression. Returns: the absolute value of the number. Time Comp 1 min read Python math function | copysign() math.copysign() is a function exists in Standard math Library of Python. This function returns a float value consisting of magnitude from parameter x and the sign (+ve or -ve) from parameter y. Syntax : math.copysign(x, y) Parameters : x : Integer value to be converted y : Integer whose sign is requ 1 min read Python | math.floor() function In Python, math module contains a number of mathematical operations, which can be performed with ease using the module. math.floor() function returns the largest integer not greater than x. If number is already integer, same number is returned. Syntax: math.floor(x) Parameter: x: This is a numeric e 1 min read math.cos() in Python math.cos() function in Python is part of the built-in math module, which provides access to mathematical functions. The math.cos() function is used to calculate the cosine of an angle, which is a fundamental trigonometric function widely used in various fields like physics, engineering and computer 2 min read Python | math.gcd() function In Python, math module contains a number of mathematical operations, which can be performed with ease using the module. math.gcd() function compute the greatest common divisor of 2 numbers mentioned in its arguments. Syntax: math.gcd(x, y) Parameter: x : Non-negative integer whose gcd has to be comp 2 min read Python - cmath.acos() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.acos() function returns the arc cosine value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.acos(x) Parameter:This method 1 min read Python - cmath.acosh() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.acosh() function returns the inverse hyperbolic cosine value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.acosh(x) Para 1 min read Python oct() Function Python oct() function takes an integer and returns the octal representation in a string format. In this article, we will see how we can convert an integer to an octal in Python. Python oct() Function SyntaxSyntax : oct(x) Parameters: x - Must be an integer number and can be in either binary, decimal 2 min read Python int() Function The Python int() function converts a given object to an integer or converts a decimal (floating-point) number to its integer part by truncating the fractional part.Example:In this example, we passed a string as an argument to the int() function and printed it.Pythonage = "21" print("age =", int(age) 3 min read Like