In [1]:
import math

In [2]:
print(math.cos(0))


1.0

In [3]:
from math import sin

In [4]:
print(sin(0))


0.0