/ Published in: Python
The Python language provides break to stop execution and break out of the current loop. Python also includes continue to stop execution of the current iteration and start the next iteration of the current loop. The following example shows the use of the break and continue statements:
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
>>>word = "Pithon Phrasebook" >>>string = "" >>>for ch in word: >>> if ch == 'i': >>> string +='y' >>> continue >>> if ch == ' ': >>> break >>> string += ch >>>print string Python