Computer Science, asked by sunulu6985, 24 days ago

Write a python program that takes a number and calculate and display the log ,sin,square and cosine of it

Answers

Answered by Anonymous
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