Comment trouver le cosinus dans Python

import math
x = math.cos(90)
print(x)
Blushing Buzzard