Q. Which of the following will create a list of numbers from 0 to 9?
β
Correct Answer: (A)
list(range(10))
Explanation: `range(10)` generates numbers from 0 to 9, and `list()` converts it into a list.