comment utiliser le péché inverse et cos inverse à python

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