Your question is Python Odd Numbers. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
How would you print out all the odd numbers in a list in Python?
Implement print_odd_numbers(nums), where nums is a list of integers. Return a new list containing only the odd values in their original order, so the caller can print the result.
def print_odd_numbers(nums):