VOOZH about

URL: https://www.geeksforgeeks.org/python/python-math-sin-function/

⇱ Python | math.sin() function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | math.sin() function

Last Updated : 20 Mar, 2019
In Python, math module contains a number of mathematical operations, which can be performed with ease using the module. math.sin() function returns the sine of value passed as argument. The value passed in this function should be in radians.
Syntax: math.sin(x) Parameter: x : value to be passed to sin() Returns: Returns the sine of value passed as argument
Code #1:
Output:
The value of sine of pi/6 is : 0.49999999999999994
  Code #2:
Output:
in_array : [-3.14159265, -2.57039399, -0.28559933, 0.28559933, 2.57039399, 3.14159265] out_array : [-3.5897930298416118e-09, -0.5406408168673427, -0.2817325547837714, 0.2817325547837714, 0.5406408168673427, 3.5897930298416118e-09]
👁 Image
Comment
Article Tags: