Python의 수학 함수 | 세트 3(삼각함수 및 각도 함수)

일부 수학 함수는 아래 세트 1과 세트 2에서 설명됩니다. Python의 수학 함수 | 세트 1(숫자 기능) Python의 수학 함수 | 세트 2(로그 및 거듭제곱 함수) 이 문서에서는 삼각함수와 각도 함수에 대해 설명합니다. 1. 죄() :- 이 함수는 그들의 것 인수로 전달된 값입니다. 이 함수에 전달된 값은 다음과 같아야 합니다. 라디안 . 2. 코스() :- 이 함수는 코사인 인수로 전달된 값입니다. 이 함수에 전달된 값은 다음과 같아야 합니다. 라디안 . Python
   # Python code to demonstrate the working of   # sin() and cos()   # importing 'math' for mathematical operations   import   math   a   =   math  .  pi  /  6   # returning the value of sine of pi/6   print   (  'The value of sine of pi/6 is : '     end  =  ''  )   print   (  math  .  sin  (  a  ))   # returning the value of cosine of pi/6   print   (  'The value of cosine of pi/6 is : '     end  =  ''  )   print   (  math  .  cos  (  a  ))   
Output:
The value of sine of pi/6 is : 0.49999999999999994 The value of cosine of pi/6 is : 0.8660254037844387  

3. 탄() :- 이 함수는 접선 인수로 전달된 값입니다. 이 함수에 전달된 값은 다음과 같아야 합니다. 라디안 . 4. 하이포트(a b) :- 이것은 다음을 반환합니다 빗변 인수에 전달된 값 중 하나입니다. 수치적으로는 다음의 값을 반환합니다. sqrt(a*a + b*b) . Python
   # Python code to demonstrate the working of   # tan() and hypot()   # importing 'math' for mathematical operations   import   math   a   =   math  .  pi  /  6   b   =   3   c   =   4   # returning the value of tangent of pi/6   print   (  'The value of tangent of pi/6 is : '     end  =  ''  )   print   (  math  .  tan  (  a  ))   # returning the value of hypotenuse of 3 and 4   print   (  'The value of hypotenuse of 3 and 4 is : '     end  =  ''  )   print   (  math  .  hypot  (  b    c  ))   
Output:
The value of tangent of pi/6 is : 0.5773502691896257 The value of hypotenuse of 3 and 4 is : 5.0  

5. 도() :- 이 기능은 다음과 같은 용도로 사용됩니다. 인수 값을 라디안에서 각도로 변환 . 6. 라디안() :- 이 기능은 다음과 같은 용도로 사용됩니다. 인수 값을 도에서 라디안으로 변환 . Python
   # Python code to demonstrate the working of   # degrees() and radians()   # importing 'math' for mathematical operations   import   math   a   =   math  .  pi  /  6   b   =   30   # returning the converted value from radians to degrees   print   (  'The converted value from radians to degrees is : '     end  =  ''  )   print   (  math  .  degrees  (  a  ))   # returning the converted value from degrees to radians   print   (  'The converted value from degrees to radians is : '     end  =  ''  )   print   (  math  .  radians  (  b  ))   
Output:
The converted value from radians to degrees is : 29.999999999999996 The converted value from degrees to radians is : 0.5235987755982988