Question: Using the following function definition def phone(model, company): ans = Your phone is + model + , made by + company return ans Write code

Using the following function definition def phone(model, company): ans = "Your phone is" + model + ", made by" + company return ans Write code that 1. calls this function using your phone model and company name, then 2. prints the returned value. NOTE - I am asking you to write code that calls this function. Do not trace this code. There is no need for a main() function, just few lines of Python code
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
