Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a python function perform _ arithmetic _ operation to perform basic arithmetic operations on two numbers. The function takes 3 inputs: num 1 ,

Write a python function perform_arithmetic_operation to perform basic arithmetic operations on two numbers. The function takes 3 inputs: num1, num2, and symbol in which symbol denotes the particular arithmetic operation to be performed on the numbers num1 and num2. The function should then calculate and return the result.
The arithmetic operations and their corresponding symbols are:
Arithmetic operation symbol
Addition (i.e num1+ num2)'+'
Subtraction (i.e num1- num2)'-'
Multiplication (i.e num1* num2)'*'
Division (i.e num1/num2)'/'
Note that the function should handle division by zero and invalid input (which corresponds to symbol being anything other than the four symbols listed above) gracefully by returning -1.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Multidimensional Array Data Management In Databases

Authors: Florin Rusu

1st Edition

1638281483, 978-1638281481

More Books

Students also viewed these Databases questions