function sin in python code example
Example: sine python
import math
math.sin() #sine function | Note this function won't work without a number between the parentheses
#In Practice:
ans = math.sin(90)
print(ans)
import math
math.sin() #sine function | Note this function won't work without a number between the parentheses
#In Practice:
ans = math.sin(90)
print(ans)