Write the output of the following:
for i in [100,200,300] : print (i)
100 200 300
The above code iterates through each element in the list [100, 200, 300] using a for loop. During each iteration, it prints the current element i.
for
i