Observe the following code and output and then fill in the blank with appropriate jump statement: for a in range(1,6,1): if (a==3) : __________ print(a, end=' ') Output : 1 2 4 5
Answers
Answered by
0
Answer:
continue
Explanation:
continue only stops current iteration.
Similar questions