Question: I need to code this problem using python. (Iearned only up to tuples) Summer Job Function Name: summer_job() Parameters: a list of job tuples (
I need to code this problem using python. (Iearned only up to tuples)

Summer Job Function Name: summer_job() Parameters: a list of job tuples ( list ) Returns: highest paying job ( str) Description: You are looking to find a job on campus for this summer to save money for a study abroad. Write a function that takes in a list of tuples in the format of (job title (str), hourly pay ( float ), hours per week (int)), and determines in which job you would make the most money weekly. If two jobs have the same weekly pay, return the job that appears first in the list. Assume that tax is already accounted for. Note: These numbers are not representative of the true salaries. >>> jobs = [("Teaching Assistant", 8.50, 12), ("Office of International Affairs ", 9, 8), ("CRC", 7.50, 15)] >>> print (summer_job(jobs)) CRC
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
