Chat with us, powered by LiveChat Create a function for each math operation (add, div, mult, sub). The application will run forever (while True), you will ask the user to continue or not. - Wridemy

Create a function for each math operation (add, div, mult, sub). The application will run forever (while True), you will ask the user to continue or not.

 

ASSIGNMENT

You are going to enhance the prior assignment by doing the following:

  • Create a function for each math operation (add, div, mult, sub).
  • The application will run forever (while True), you will ask the user to continue or not.
  • Create a function IsInRange() to test a number between two numbers like this.

Here is the spec in pseudo-code

IsInRange(lr, hr, n)

lr=low range

hr=high range

n=number

if n between ln and hr

    return true

else

    return false

>>> Show me how to use the function isInRange()

for example, we can check if the inputs are between -10 and 10 then do the calculations. else print "values are not in range" and loop back. use input() to get the ranges.

SAMPLE OUTPUT:

Enter your First number —> 15
Enter your Second number —> 17

The result of 15.0+17.0=32.0
The result of 15.0-17.0=-2.0
The result of 15.0*17.0=255.0
The result of 15.0/17.0=0.882352941176

Continue Looping Y/N Y

Sample output using ranges.

Enter your Lower range —> 10
Enter your Higher range —> 50
Enter your First number (10 – 50) —> 5     <<<  10 and 50 from input, do not hard code.

Enter your Second number (10 – 50) —> 60

The input values are outside the input ranges
Please check the numbers and try again.

HINTS:

1) program structure 

"""

   comment block

"""

# def functions <<< All def functions should be on the top of the program

def add …

def sub…

def …

while True:

         get user inputs

         print result

         ask the user do want more calculations (y/n)

         if yes then

            loop

         else

           exit (break)

print thank you for using …

2) 

FUNCTIONS:

A function is a set of code that only runs when it is called. You can pass data, known as parameters, into a function. A function can return value as a result. Python can return more than one value.

# When creating a function, you must pass a parameter(s) and return at least one value.

Do not use global variables.

def add(fnum, snum):
    return fnum+snum

# in the program using the add()
res=add(6,8)
print(res) 
print("The result =", res)

# function returning more than one value

def epay(employee, rate, hours):

      pay=rate*hours

      return employee, rate, hours, pay

#using epay

print( epay("Bnudy", 3.50, 32)) # ('Bnudy', 3.5, 32, 112.0)

# or

name, hrate, hrs, pay=epay("Bnudy", 3.50, 32)

print(name, hrate, hrs, pay)

# or

print(f"Name={name}, rate={hrate}, hours={hrs} and the pay={pay}")

# here is the output
('Bnudy', 3.5, 32, 112.0)

Bnudy 3.5 32 112.0

Name=Bnudy, rate=3.5, hours=32 and the pay=112.0

>>> How do I do something like this

Enter your First number (10 – 50) —> 5     <<<  10 and 50 from input, do

try this

n1=50

n2=100

input(f'Enter your First number ('{n1} – {n2})')

# Test a number between two numbers
# checknum()
def checknum(lb,num,ub):

    #lb = lower bound

    #ub = upper bound

    #num = number to be tested if it is between lb and ub

    #returns true if the number between lb and ub   

    return lb < n < ub
 

#test checknum()
print( checknum(10,5,20)) 
print( checknum(10,11,20))   

Assessment Rubric

Exemplary (25-20)

Accomplished
(19-10)

Developing
(9-1))

Beginning
( 0)

Points Available

  • Assignment details in a comment block

The student effectively completed the assignment.

The student partially completed the assignment.

The student provided limited and meaningless substance to complete the assignment.

The student failed to complete the assignment.

25

  • Using functions()

The student effectively completed the assignment.

The student partially completed the assignment.

The student provided limited and meaningless substance to complete the assignment.

The student failed to complete the assignment.

25

  • Using loop

The student effectively completed the assignment.

The student partially completed the assignment.

The student provided limited and meaningless substance to complete the assignment.

The student failed to complete the assignment.

25

  • The print function used to correctly print the results and the prompts
  • Application is running

The student effectively completed the assignment.

The student partially completed the assignment.

The student provided limited and meaningless substance to complete the assignment.

The student failed to complete the assignment.

25

Total

100

    Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.

    Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.

    Do you need an answer to this or any other questions?

    About Wridemy

    We are a professional paper writing website. If you have searched a question and bumped into our website just know you are in the right place to get help in your coursework. We offer HIGH QUALITY & PLAGIARISM FREE Papers.

    How It Works

    To make an Order you only need to click on “Place Order” and we will direct you to our Order Page. Fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.

    Are there Discounts?

    All new clients are eligible for 20% off in their first Order. Our payment method is safe and secure.

    Hire a tutor today CLICK HERE to make your first order