Question: MyPyTutor ProblemsOnline Tools Preferences Feedback Help List Comprehension List comprehension is typically used to filter and transform lists Write the function square_odds that takes a

MyPyTutor ProblemsOnline Tools Preferences Feedback Help List Comprehension List comprehension is typically used to filter and transform lists Write the function square_odds that takes a list of integers nums and returns the squares of the odd numbers in the list nums. You must use list comprehension. Write square_odds(nums) Submitted: No square_odds ([])- [] square_odds ([1,2,3,4,5]) -> [1,9,25] square_odds ([2,4,8]) -> [.] name 'square_odds' is not defined square_odds([7,3,5]) - [49,9,25] You need to define square_odds
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
