Are you sure you're getting this? Is this statement true or false?
The letter 'p' will not be printed in the execution of following code block.
PYTHON
1text = "Loops"
2i = 0
3while i < len(text):
4 if text[i] == "o":
5 i += 1
6 continue
7 print(text[i])
8 i += 1
Press true if you believe the statement is correct, or false otherwise.