Python program to find sin angle

#using class to find sin angle
import math
class my:
  def cal(x):
    sum=math.sin(x)
    return sum
y=float(input("enter no"))
x=my.cal(y)
print(x)

Comments

Popular Posts