Today we are going to share a Python program to find the sum of sine series. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to find the sum of sine series.
To increase your Python knowledge, practice all Python programs:
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 11 12 | import math def sin(x,n): sine = 0 for i in range(n): sign = (-1)**i pi=22/7 y=x*(pi/180) sine = sine + ((y**(2.0*i+1))/math.factorial(2*i+1))*sign return sine x=int(input("Please enter the value of x in degrees:")) n=int(input("Please enter the number of terms:")) print(round(sin(x,n),2)) |
Please enter the value of x in degrees: 15
Please enter the number of terms: 5
0.26
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.