0
Mathematic problem
am i able to calculate sinus and cosinus with python?
2 Respuestas
+ 2
import math
x = 12
math.sin(x)
math.cos(x)
math.asin(x)
math.acos(x)
math.tan(x)
math.atan(x)
math.atan2(x)
etc...
0
@ChaoticDawg asin is arcus sinus?
but thanks buddy!