What is the equivalent list comprehension in python of the following Common Lisp code:
(loop for x = input then (if (evenp x)
(/ x 2)
(+1 (* 3 x)))
collect x
until (= x 1))
|
What is the equivalent list comprehension in python of the following Common Lisp code:
|
||||
|
|
|
A list comprehension is used to take an existing sequence and perform some function and/or filter to it, resulting in a new list. So, in this case a list comprehension is not appropriate since you don't have a starting sequence. An example with a while loop:
|
|||
|
|
|
I believe you are writing the hailstone sequence, although I could be wrong since I am not fluent in Lisp. As far as I know, you can't do this in only a list comprehension, since each element depends on the last. How I would do it would be this
Of course, input would hold whatever your input was. My hailstone function could probably be more concise. My goal was clarity. |
||||
|
|
Python doesn't have this kind of control structure built in, but you can generalize this into a function like this:
After this your expression can be written as:
But the Pythonic way to do it is using a generator function:
|
|||
|
|
|
The hackery referred to by Laurence: You can do it in one list comprehension, it just ends up being AWFUL python. Unreadable python. Terrible python. I only present the following as a curiosity, not as an actual answer. Don't do this in code you actually want to use, only if you fancy having a play with the inner workings on python. So, 3 approaches: Helping List 11: Using a helping list, answer ends up in the helping list. This appends values to the list being iterated over until you've reached the value you want to stop at.
result:
Helping List 22: Using a helping list, but with the result being the output of the list comprehension. This mostly relies on
result:
Referencing the List Comprehension from within3: Not using a helping list, but referring back to the list comprehension as it's being built. This is a bit fragile, and probably wont work in all environments. If it doesn't work, try running the code on its own:
result:
So, now forget that you read this. This is dark, dark and dingy python. Evil python. And we all know python isn't evil. Python is lovely and nice. So you can't have read this, because this sort of thing can't exist. Good good. |
||||
|
As Kiv said, a list comprehension requires a known sequence to iterate over. Having said that, if you had a sequence and were fixated on using a list comprehension, your solution would probably include something like this:
Mike Cooper's answer is a better solution because it both retains the |
|||
|
|
|
1 I have discovered a truly marvelous proof of this, which this margin is too narrow to contain. In all seriousness though, I don't believe you can do this with Python list comprehensions. They have basically the same power as map and filter, so you can't break out or look at previous values without resorting to hackery. |
|||
|
|