Answered step by step
Verified Expert Solution
Question
1 Approved Answer
IN PYTHON Given the following two lists names = ['Alice', 'Bob', 'Cathy', 'Dan', 'Ed', 'Frank', 'Gary', 'Helen', 'Irene', 'Jack', 'Kelly', 'Larry'] ages = [18, 21,
IN PYTHON
Given the following two lists names = ['Alice', 'Bob', 'Cathy', 'Dan', 'Ed', 'Frank', 'Gary', 'Helen', 'Irene', 'Jack', 'Kelly', 'Larry'] ages = [18, 21, 18, 18, 19, 20, 20, 19, 19, 19, 22, 19] Write a function combine_lists_into_dic that combines these lists into a dictionary (note that names[i]s age is ages[i]). Then, write a function people that takes in an age and returns the names of all the people who are that age. Hint: make sure to test edge conditions, e.g., test on people(27)should return an empty list.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started