Wie man in Python um Inverse und COs inverse verwendet

 
# import math library
import math
print(math.acos(-0.2))
print(math.acos(0))
print(math.acos(0.2))
Odd Octopus