0 votes
in Python by
Can we use a break and continue together in Python? How?

1 Answer

0 votes
by

Break and continue can be used together in Python. The break will stop the current loop from execution, while jump will take to another loop.

...