Question: 0.8 Exercise: In my_odd_list.py fill in the necessary code below to create a list with the first N odd numbers: N = 10 odd_numbers =

0.8 Exercise: In my_odd_list.py fill in the necessary code below to create a list with the first N odd numbers: N = 10 odd_numbers = [] # WRITE YOUR CODE HERE print (odd_numbers) In this case, the output should be: [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] (These are the first 10 odd numbers)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
