If I make a list in Python and want to write a function that would return only odd numbers from a range 1 to x how would I do that?
For example, if I have list [1, 2, 3, 4] from 1 to 4 (4 ix my x), I want to return [1, 3].
|
If I make a list in Python and want to write a function that would return only odd numbers from a range 1 to x how would I do that? For example, if I have list [1, 2, 3, 4] from 1 to 4 (4 ix my x), I want to return [1, 3]. |
||||
|
|
|
If you want to start with an arbitrary list:
but if you're always starting with For example:
so the right approach is about 28 times (!) faster than a somewhat-typical wrong one, in this case. The "more general than you need if that's all you need" solution:
is only about twice as fast as the sample wrong one, but still over 15 times slower than the "just right" one!-) |
|||||||||
|
|
What's wrong with:
....??? (Assuming you want every other element from some arbitrary sequence ... all those which have odd indexes). Alternatively if you want all items from a list of numbers where the value of that element is odd:
|
|||
|
|
|
To have a range of odd/even numbers up to and possibly including a number n, you can:
If you want a generic algorithm that will take the items with odd indexes from a sequence, you can do the following:
|
|||
|
|