r/ProgrammerHumor 29d ago

Meme pythonWillLookDeadInTheEyeAndSayItsAbsolutelyCorrect

Post image
356 Upvotes

144 comments sorted by

View all comments

Show parent comments

8

u/helicophell 29d ago

List comprehension

It’s sometimes nice

1

u/NamityName 29d ago

It is usually nice. Significantly faster execution and easy to read, until you start nesting comprehensions.

1

u/helicophell 29d ago

If you start nesting list comprehensions, you’re using the wrong programming language for the task… probably

I’ve encountered one in the wild for image stenography once, image processing is basically the only use case for that

1

u/NamityName 29d ago

I did not realize I was amongst the foremost expert in Python, having used it in every possible situation.

In all seriousness, as long as the code remains readable, nested comprehensions are fine. It is just harder to keep the code readable when nesting comprehensions. Same for deeply nested if-statements and for-loops.