homeworkstudyhelp

Our Services

Get 15% Discount on your First Order

def add(num1, num2):    return num1 + num2 def sub(num1, num2):…

def add(num1, num2):
   return num1 + num2

def sub(num1, num2):
   return num1 – num2

def mult(num1, num2):
   return num1 * num2

def div(num1, num2):
   if num2 == 0:
       raise ZeroDivisionError(“Cannot divide by zero”)
   else:
       return num1 / num2

def isInRange(lr, hr, n):
   if n >= lr and n <= hr:
       return True
   else:
       return False

def promptContinue():
   while True:
       response = input(“Would you like to perform another calculation? (y/n): “)
       if response.lower() == “y”:
           return True
       elif response.lower() == “n”:
           return False
       else:
           print(“Invalid response, please enter ‘y’ or ‘n’.”)

while True:
   try:
       lowRange = float(input(“Enter the lower range: “))
       highRange = float(input(“Enter the higher range: “))

       num1 = float(input(“Enter your First number: “))
       if not isInRange(lowRange, highRange, num1):
           raise ValueError(“Number is outside range”)

       num2 = float(input(“Enter your Second number: “))
       if not isInRange(lowRange, highRange, num2):
           raise ValueError(“Number is outside range”)

       op = input(“Enter the math operation you want to perform (+, -, *, /): “)
       if op not in [“+”, “-“, “*”, “/”]:
           raise ValueError(“Invalid operation selected.”)

       if op == “+”:
           result = add(num1, num2)
           print(“The result of”, num1, “+”, num2, “=”, result)
       elif op == “-“:
           result = sub(num1, num2)
           print(“The result of”, num1, “-“, num2, “=”, result)
       elif op == “*”:
           result = mult(num1, num2)
           print(“The result of”, num1, “*”, num2, “=”, result)
       elif op == “/”:
           result = div(num1, num2)
           print(“The result of”, num1, “/”, num2, “=”, result)

   except ValueError as e:
       print(“Invalid input:”, e)

   except ZeroDivisionError as e:
       print(“Error:”, e)

   if not promptContinue():
       print(“Thanks for using our calculator!”)
       break

 

How to the following with the code above?

 

1) Move all the functions into W5_firstname_lastname_Mylib.py

2) Use import to include W5_firstname_lastname_Mylib into the code

3) Test the code and make sure that the prior code is still working (Create your own application/test in the program using the library)

4) Add the following function into Mylib

    scalc(p1)

    p1 will be a string like this “N1, N2, operator”

 

   examples

    scalc(“20,30,*”)

    the result will be 600

    scalc(“50,20,+”)

    the result will be 70

    scalc(“50,20,-“)

    the result will be 30
    scalc(“60,20,/”)

    the result will be 30

 

use string functions to parse the first number, the second number, and the operator from the    input string.

 

use the prior functions (add, subtract, divide and multiply) to do the calculations.

 

Do not use any UI functions in the library such as print(), input(), and format. A function should accept a parameter and return at least one value to the caller.

Share This Post

Email
WhatsApp
Facebook
Twitter
LinkedIn
Pinterest
Reddit

Order a Similar Paper and get 15% Discount on your First Order

Related Questions

Python –Gaussian Naive Bayes classifier How can I resolve this…

Python –Gaussian Naive Bayes classifier How can I resolve this Error “TypeError: np.matrix is not supported. Please convert to a numpy array with np.asarray. For more information “   CODE: from sklearn.datasets import load_svmlight_filefrom sklearn.model_selection import train_test_splitfrom sklearn.pipeline import make_pipelinefrom sklearn.preprocessing import StandardScalerfrom sklearn.naive_bayes import GaussianNB   # Load the data

Program should run in python 3     API :…

Program should run in python 3     API : https://api.chucknorris.io/   Outline : Welcome: Print a Welcome message for the user. : Make a GET request from the library to API: Chuck Norris Jokes. Choose science for as the category Only generate jokes of this categor  parse the JSON

ogram should run in python 3     API :…

ogram should run in python 3     API : https://api.chucknorris.io/   Outline : Welcome: Print a Welcome message for the user. : Make a GET request from the library to API: Chuck Norris Jokes. Choose science for as the category Only generate jokes of this categor parse the JSON

DTLearner import pandas as pd import numpy as np   class…

DTLearner import pandas as pd import numpy as np   class DTLearner(object):     def __init__(self, leaf_size = 1, verbose = False):         self.leaf_size = leaf_size         self.verbose = verbose         self.dataframe = None         self.tree = None

DTLearner import pandas as pd import numpy as np   class…

DTLearner import pandas as pd import numpy as np   class DTLearner(object):     def __init__(self, leaf_size = 1, verbose = False):         self.leaf_size = leaf_size         self.verbose = verbose         self.dataframe = None         self.tree = None

Two sum in Python: Based on array of different integers (ints) and…

Two sum in Python: Based on array of different integers (ints) and a single  integer (target), write function to print count/amount of combinations (non-repeating) of pairs of integers in (ints) such that the two integers sum to (target). Starting with: def twosum (ints, target): I’m not sure how to make

import pandas as pd import numpy as np from sklearn.model_selection…

import pandas as pdimport numpy as npfrom sklearn.model_selection import train_test_splitfrom sklearn import linear_modelfrom sklearn.metrics import r2_score import seaborn as snsimport matplotlib.pylab as plt%matplotlib inline   reg = linear_model.LinearRegression()X = iris[[‘petal_length’]]y = iris[‘petal_width’]reg.fit(X, y)print(“y = x *”, reg.coef_, “+”, reg.intercept_)   predicted = reg.predict(X)mse = ((np.array(y)-predicted)**2).sum()/len(y)r2 = r2_score(y, predicted)print(“MSE:”, mse)print(“R Squared:”,

how to calculate average maths score for student of each year…

how to calculate average maths score for student of each year level(9,10,11,12) at each school, using pandas. how to make a pandas series for each year, and group each series by school, and then combine the series in a dataframe the results like below   Year 9 Year 10 Year

The Beauty of Data Visualization   Here is an easy and short…

The Beauty of Data Visualization   Here is an easy and short discussion post: watch this Ted Talk on data visualization. https://www.youtube.com/watch?v=5Zg-C8AAIGg   Watch the video, then answer the following questions: Summarize the video in a few sentences (2-4) Why is it important to visualize data in specific ways? Give

  PLEASEEE CREATE ILLUSTRATION OF EXACTLY HOW THE HIERARCHY CHART…

  PLEASEEE CREATE ILLUSTRATION OF EXACTLY HOW THE HIERARCHY CHART WILL LOOK  USING THE CODE BELOW.  THE CODE MUST BE HORIZONTAL. USE THIS PHOTO AS AN EXAMPLE OF WHAT IT IS SUPPOSED TO LOOK LIKE !!!       class VendingMachine:    def __init__(self):        self.products = { 

Since I used isdigit() method to verify the input, any floating…

Since I used isdigit() method to verify the input, any floating number input won’t be processed because of the “.” in the number. I suppose to use type conversion with “try, except” method instead.  # calculate pay(hours worked and hourly rate ) by declaring functiondef CalPay(hrs, rate):   if hrs <=

How to remove stopwords from. CSV to text classification or…

How to remove stopwords from. CSV to text classification or sentiment. my project is cyberbully detection using machine learning, and at the pre-processing stage, I need to remove some of the stopwords this error keeps showing up, and I can’t solve it ” TypeError: list indices must be integers or

A Python function definition is initiated by using this keyword in…

A Python function definition is initiated by using this keyword in the header:    function    def    import    It is necessary to include this punctuation at the end of a function header statement:    ; semi-colon    : colon    {opening curly brace    All statements within the

1 in contrast to a terminal-based program, a GUI-based program…

1 in contrast to a terminal-based program, a GUI-based program completely controls the order in which the user enters inputs can allow the user to enter inputs in any order   2 The attribute used to attach an event-handling method to a button is named pressevent onclick command