#continue

[ follow ]
Python
fromRealpython
4 hours ago

Break Out of Loops With Python's break Keyword - Real Python

The break statement immediately exits the innermost loop, stopping further iterations; continue skips the current iteration but does not exit the loop.
[ Load more ]