4. Advanced techniques in list comprehension

Quiz: 0/5

In Python, list comprehension is not just about creating simple lists; it also allows you to apply functions and handle more complex conditions in a clean and concise way. Let’s break this down:

Applying functions within list comprehension

Sometimes, you want to apply a function to each item in your list. With list comprehension, this can be done in a very neat way. Here's the basic structure:

[function(item) for item in iterable]
  • function: The function you want to apply to each item in the list.
  • item: Each individual element from the iterable (like a list or a string).
  • iterable: A sequence of items, such as a list, a string, or any iterable object.

Example: Converting strings to uppercase using str.upper()

Let’s say you have a list of words, and you want to convert them to uppercase:

words = ['apple', 'banana', 'cherry']
uppercase_words = [word.upper() for word in words]
print(uppercase_words)

Output:

['APPLE', 'BANANA', 'CHERRY']

Here, the upper() function is applied to each word in the list. The list comprehension makes this operation concise and easy to read.

List comprehension with multiple conditions

You can also use multiple conditions in a list comprehension to filter the items you want. The syntax looks like this:

[expression for item in iterable if condition1 and condition2]

This means you’ll only include items in your list that meet both conditions.

Example: Filtering numbers that are divisible by both 2 and 3

Let’s say you want to filter out only the numbers in a list that are divisible by both 2 and 3:

numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 15]
filtered_numbers = [num for num in numbers if num % 2 == 0 and num % 3 == 0]
print(filtered_numbers)

Output:

[6, 12]

Here, the list comprehension only includes numbers that are divisible by both 2 and 3.

Why this is helpful:

  • Using functions within list comprehensions makes your code cleaner, especially when you need to modify or transform the items.
  • Multiple conditions allow you to filter the list based on several factors, all in one line!

This makes your code shorter, readable, and efficient, especially for beginners who are looking to simplify common tasks like transforming data or filtering lists.

Hands-On Practise

Exercise:

You are given a list of strings representing people's names. Your task is to:

  1. Convert each name to title case (capitalize the first letter of each word).
  2. Filter out any names that contain the letter 'a'.

Use list comprehension to solve this problem.

Instructions:

  1. Create a list of names: ['alice', 'bob', 'charlie', 'david', 'eve'].
  2. Convert each name to title case using the str.title() function.
  3. Include only names that do not contain the letter 'a'.
Output:

Quizzes: 0/5

Question 1:

What is the purpose of using functions within list comprehension in Python?

  • To perform an operation on each item in the list
  • To filter out specific items from the list
  • To sort the list in a specific order
  • To create a nested list

Question 2:

Which function is used in the following list comprehension to convert each name to uppercase: [name.upper() for name in names]?

  • str.upper()
  • str.capitalize()
  • str.title()
  • str.lower()

Question 3:

What will be the output of the following list comprehension: [num for num in range(10) if num % 2 == 0 and num % 3 == 0]?

  • [0, 2, 4, 6, 8]
  • [0, 6]
  • [0, 3, 6, 9]
  • [1, 2, 3, 4, 5, 6, 7, 8, 9]

Question 4:

Which of the following list comprehensions correctly converts each string in the list to title case and filters out strings containing the letter 'a'?

  • [name.title() for name in names if 'a' not in name]
  • [name.lower() for name in names if 'a' in name]
  • [name.capitalize() for name in names if 'a' in name]
  • [name.upper() for name in names if 'a' not in name]

Question 5:

What does the following list comprehension do: [num * 2 for num in range(5) if num % 2 == 0]?

  • It multiplies all numbers by 2
  • It creates a list of even numbers
  • It creates a list of numbers divisible by 2, multiplied by 2
  • It creates a list of odd numbers multiplied by 2

Feedback

Share your thoughts about this lesson

Discussion

Please log in to create a discussion.
Previous lessonNested Loops and List ComprehensionNext lessonDictionary Comprehension