this post was submitted on 15 Jul 2025
439 points (94.7% liked)

Programmer Humor

38602 readers
32 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] redxef@feddit.org 38 points 2 months ago (4 children)
def is_even(n: int) -> bool:
    if n < 0:
        return is_even(-n)
    r = True
    for _ in range(n):
        r = not r
    return r

He loves me, he loves me not

load more comments (3 replies)