Let's test your knowledge. Fill in the missing part by typing it in.
How many times will the following loop be executed?
PYTHON
1fruits = ["apple", "mango", "strawberry", "grapes", "orange", "watermelon", "peach"]
2fruits.pop()
3
4for i in fruits:
5    print(i)Write the missing line below.



