100
200
300
The for loop iterates over each element in the list [100, 200, 300] using the in operator, and during each iteration, the variable i takes on the value of each element in the list. The print(i) statement then prints the value of i during each iteration of the loop.