Which statement is used to skip the remainder of the code inside the current loop iteration and move to the next iteration?
- continue
- jump
- pass
- skip
The 'continue' statement is used to skip the remaining code inside the current loop iteration and move to the next iteration of the loop. It allows you to bypass specific conditions or processing in the loop.
Loading...
Related Quiz
- How would you use a mock object in Python for testing a function that makes an HTTP request?
- Which of the following will catch all exceptions in Python?
- To convert a list into a set in Python, you can pass the list to the ____ constructor.
- In Python, to create a private attribute in a class, you prefix the attribute name with _______.
- The philosophy of Python is summarized in a document referred to as?