Hàm degrees() trong Python chuyển đổi góc x từ radian thành độ.
Nội dung chính
Cú pháp
Cú pháp của degrees() trong Python:
import math math.degrees(x)
Các tham số:
x: Đây phải là một giá trị số.
Ví dụ hàm degrees() trong Python
Ví dụ sau minh họa cách sử dụng của hàm degrees() trong Python.
import math print ("degrees(2) : ", math.degrees(2)) print ("degrees(-2) : ", math.degrees(-2)) print ("degrees(0) : ", math.degrees(0)) print ("degrees(math.pi) : ", math.degrees(math.pi)) print ("degrees(math.pi/2) : ", math.degrees(math.pi/2)) print ("degrees(math.pi/4) : ", math.degrees(math.pi/4))
Chạy chương trình Python trên sẽ cho kết quả:
degrees(2) : 114.59155902616465 degrees(-2) : -114.59155902616465 degrees(0) : 0.0 degrees(math.pi) : 180.0 degrees(math.pi/2) : 90.0 degrees(math.pi/4) : 45.0.0