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.

Related questions

0 votes
asked Aug 29, 2020 in Python by Robindeniel
0 votes
asked Dec 14, 2019 in Python by sharadyadav1986
...