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
Exercise instructions
- Using the range of numbers from
0
to9
as your iterable andi
as your iterator variable, write a list comprehension that produces a list of numbers consisting of the squared values ofi
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create list comprehension: squares
squares = [____ for ____ in ____]