Write a python program that takes a number and calculate and display the log ,sin,square and cosine of it
Answers
Answered by
0
Answer:
import math
print("Enter a number: ")
number = int(input())
print(math.sin(number))
print(math.pow(number, 2))
print(math.log(number))
print(math.cos(number))
Similar questions