>>> [0]*10 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Here is what the above code is Doing:
1. We create a list of 10 zeros using the list comprehension [0]*10.
2. We then iterate through the list of zeros and set the value at index i to i.
3. We print the list.