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

Programmer Humor

24245 readers
1552 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 35 points 4 days 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 7 points 4 days ago (1 children)
[–] gamma@programming.dev 9 points 3 days ago (1 children)

Not as cursed as

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