Are you sure you're getting this? 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.