Get startedGet started for free

Writing list comprehensions

You now have all the knowledge necessary to begin writing list comprehensions! Your job in this exercise is to write a list comprehension that produces a list of the squares of the numbers ranging from 0 to 9.

This exercise is part of the course

Python Toolbox

View Course

Exercise instructions

  • Using the range of numbers from 0 to 9 as your iterable and i as your iterator variable, write a list comprehension that produces a list of numbers consisting of the squared values of i.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Create list comprehension: squares
squares = [____ for ____ in ____]
Edit and Run Code