Let me share a tip regarding naming inside list comprehensions.

Naming things is the hardest problem in programming. That's something I've heard people say quite a bit 😁 That's why I wrote an article about naming variables and functions in Python.

Overall, you should always use descriptive names. Naming things inside list comprehensions isn't an exception. As a simplified example, compare the two list comprehensions below:

# 🤮
l = [42, 73, 10, 16]
l2 = [x > 21 for x in l]

# ✨✨
ages = [42, 73, 10, 16]
is_adult = [age > 21 for age in ages]

Because of the descriptive names, it becomes much easier to understand what is going on in the second list comprehension! Strive to use descriptive names as often as possible.

However, list comprehensions lend themselves to a bit more flexibility, in my opinion. The auxiliary variables (like age above) only exist inside the list comprehension.

In other words, these variables are fairly short-lived and only matter in that single place. So, if you have a fairly long list comprehension, I think it is fairly reasonable to shorten the names of the variables a bit. Here is an example:

first_names = ["Alice", "Bob", "Charles", "Diana"]
last_names = ["Abbey", "Bacon", "Carden", "Dalton"]
ages = [42, 73, 10, 16]

# Long list comprehension:
info = [f"{first_name} {last_name} is {age} years old." for first_name, last_name, age in zip(first_names, last_names, ages)]

# Shorter variable names, still long:
info = [f"{first} {last} is {age} years old." for first, last, age in zip(first_names, last_names, ages)]

# Even shorter, a bit more extreme, sometimes useful:
info = [f"{f} {l} is {a} years old." for f, l, a in zip(first_names, last_names, ages)]

Using one-letter variable names in list comprehensions can be useful. Just make sure that's ok in the context you are doing that. You may have to adhere to a coding style that is very much against one-letter variable names!

This article was generated automatically from this thread I published on Twitter @mathsppblog. Then it was edited lightly.

Become a better Python 🐍 developer 🚀

+35 chapters. +400 pages. Hundreds of examples. Over 30,000 readers!

My book “Pydon'ts” teaches you how to write elegant, expressive, and Pythonic code, to help you become a better developer. Get it below!

Download from

Previous Post Next Post

Blog Comments powered by Disqus.