Untitled

 avatar
unknown
plain_text
a year ago
161 B
6
Indexable
import math
x = 100
print(math.sin(x))
print(math.cos(x))
print(math.tan(x))

x = 2.6 * math.pi
print(math.sin(x))
print(math.cos(x))
print(math.tan(x))
Editor is loading...
Leave a Comment