this post was submitted on 12 Jun 2025
560 points (98.6% liked)

Programmer Humor

24583 readers
676 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
you are viewing a single comment's thread
view the rest of the comments
[–] mdhughes@lemmy.sdf.org 36 points 2 weeks ago (1 children)

print( ["even", "odd"][num % 2] )

If you need to avoid evaluating the wrong branch:

print( [lambda: "even", lambda: "odd"][num % 2]() )

[–] FireIced@lemmy.super.ynh.fr 8 points 2 weeks ago (1 children)
[–] gamma@programming.dev 10 points 2 weeks ago (1 children)

Not as cursed as

print("eovdedn"[n%2::2])