Skip to main content
✏️ Code CompletionPY Python Easy+10 XP

List Comprehension

Complete the list comprehension for squares.

✏️ Fill in the blank
squares = [x**2 ___ x in range(5)]

✏️ Type the missing code: