Valid Foundations-of-Programming-Python Dumps shared by EduDump.com for Helping Passing Foundations-of-Programming-Python Exam! EduDump.com now offer the newest Foundations-of-Programming-Python exam dumps, the EduDump.com Foundations-of-Programming-Python exam questions have been updated and answers have been corrected get the newest EduDump.com Foundations-of-Programming-Python dumps with Test Engine here:
Which keyword moves a loop immediately to its subsequent iteration?
Correct Answer: C
The Python keyword continue is used inside a loop to skip the rest of the current iteration and move immediately to the next iteration. Example: for number in range(5): if number == 2: continue print(number) Output: 0 1 3 4 When number is 2, the continue statement skips print(number) for that iteration and moves to the next loop cycle. The official Python documentation states that the continue statement continues with the next iteration of the loop. Therefore, the correct answer is C. continue.