Advertisements
Advertisements
प्रश्न
Create a menu-driven program using user-defined functions to implement a calculator that performs the following:
log10(x), sin(x), cos(x)
उत्तर
Program:
import math
#Providing the Menu to Choose
print("What would you like to do?")
print("1. Log10(x)")
print("2. Sin(x)")
print("3. Cos(x)")
#Asking user about the choice
n = int(input("Enter your choice(1-3): "))
#Asking the number on which the operation should be performed
x = int(input("Enter value of x : "))
#Calculation as per input from the user
if n == 1:
print("Log of",(x),"with base 10 is",math.log10(x))
elif n == 2:
print("Sin(x) is ",math.sin(math.radians(x)))
elif n == 3:
print("Cos(x) is ",math.cos(math.radians(x)))
else:
print("Invalid Choice")
APPEARS IN
संबंधित प्रश्न
How is math.ceil(89.7) different from math.floor (89.7)?
Out of random() and randint(), which function should we use to generate random numbers between 1 and 5? Justify.
The ‘Play and learn’ strategy helps toddlers understand concepts in a fun way. Being a senior student you have taken responsibility to develop a program using user-defined functions to help children master two and three-letter words using English alphabets and the addition of single-digit numbers. Make sure that you perform a careful analysis of the type of questions that can be included as per the age and curriculum.
ABC School has allotted unique token IDs from (1 to 600) to all the parents for facilitating a lucky draw on the day of their Annual day function. The winner would receive a special prize. Write a program using Python that helps to automate the task. (Hint: use random module)