this post was submitted on 18 Mar 2026
562 points (99.3% liked)

Programmer Humor

30465 readers
1932 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

Would you like me to show you how to prepare a bowl using python?

you are viewing a single comment's thread
view the rest of the comments
[–] lmr0x61@lemmy.ml 18 points 1 day ago* (last edited 1 day ago)

To completely deflate the joke, it looks like the text output was stripped of its new lines, spaces/tabs, and backticks, because I think the code would be valid if allowed those elements in a Markdown context, e.g.:

```python

def reverse_linked_list(l):
    # …
    return prev

\```

(backslash included to show triple backtick)