Q. Which of these is a correct list comprehension syntax?
β
Correct Answer: (B)
[x*x for x in range(5)]
Explanation: List comprehensions use the format `[expression for item in iterable]`.