1. Make a function/method (in python) to add 3 numbers (any datatype), save it as add_fun.py 2. Make another function/me
Posted: Tue Jul 05, 2022 10:27 am
1. Make a function/method (in python) to add 3 numbers (any datatype), save it as add_fun.py 2. Make another function/method (in python) to multiply 3 numbers (any datatype), save it as mul_fun.py 3. In the main function take input (3 numbers from the user) and use the other two functions to perform addition and multiplication, show results as follow Num1 = (the number entered) Num2= (the number entered) Num3 = (the number entered) Addition = add_result Multiplication = Mul_result