Untitled

Anonymous
plain_text
02/14/2024 6:38 PM
216 B
15
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