Question: Write a function odd( n ) that generates a list containing all odd numbers from 1 to n . Use a while loop to compute

Write a function odd( n ) that generates a list containing all odd numbers from 1 to n . Use a while loop to compute the numbers. (Make sure that if n is an even number, the largest generated odd number is n-1 .)

For instance, the result of odd( 5 ) should be [ 1,3,5 ]; the result of odd( 6 ) should be the same.

def odd( n ):

 odds = [] # an empty list to append to counter = 1 # a counter variable you can use while ???: ??? counter += 2 return odds 

What should I fill in the "???" Write the codes in Python please

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!