Question: Please help with python Q8: Functions I (0.75 points) Write a function return_odd that will take a list as its input and return a list
Please help with python

Q8: Functions I (0.75 points) Write a function return_odd that will take a list as its input and return a list of all the odd values as its output. Note that this differs from what you did above in two ways: (1) it returns the values, not the index, and (2) it's looking for odd values, not even. For example: >>> return_odd([1, 2, 3]) [1, 3] >>> return_odd ([2, 4, 6]) [ ] In [ ]: # YOUR CODE HERE raise NotImplementedError() In [. : [ ] assert return_odd([2, 4, 6]). assert return_odd([1, 2, 3]) [1, 3]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
